Skip to content

Instantly share code, notes, and snippets.

@kerekesmarton
kerekesmarton / game_of_life.py
Created October 14, 2025 15:30
Game of Life - baseline implementation
#!/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