Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 591 Bytes

README.md

File metadata and controls

29 lines (18 loc) · 591 Bytes

Game of Life

Game of life in the terminal

GoL

Getting started

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 Os:

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