This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
Conway's Game of Life - CLI Implementation | |
A terminal-based implementation of Conway's Game of Life with animated display. | |
The game runs on a 30x30 grid with random initial seed and continues until | |
interrupted by the user (Ctrl+C). | |
""" | |
import os |