This is basically Conway’s Game of Life, nothing really special. This program was created by me to learn ncurses and some C and Makefile basics.
Firstly, make sure gcc and make are installed, then run make inside the main directory:
make
Run gol
inside the bin directory with an argument representing the path to the initial state:
./bin/gol ./patterns/spaceship.gol
Then press any key to update to a newer generation. Press q
to exit the game.
Although this is a very basic project, pull requests are welcome.