Very simple implementation of Conway's Game of Life Algorithm.
The initial state of the grid is generated at random
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
python src/cli.py simulate --tick-interval 1 --grid-size 20
Try diferent grid sizes and tick intervals. Enjoy.