Game of life in the terminal
To play the game, run the script:
py gol.py
That should start the game.
You can also pass some command line arguments to change the game. For example to change the cells to O
s:
py gol.py O
If you want to use tokens that are terminal commands, you can either use quotes like "&"
or pass the flag -token=&
.
Additional flags:
py gol.py -height=50 -width=100 -fps=10