This is a C programmed software which simulates the game of life.
this software use the ncurses library, so you need to install it, type :
sudo apt install libncurses5-dev libncurses5
Just download this repository. In order to just compile it, on a terminal you have to run this command where the files are downloaded :
sudo make
then you can run it :
./GOL.exe
If you want to install it on your kernel, just type run these commands :
sudo make
sudo make install
After that, you will be able to run the command outside this directory, just run :
cd
GOL
Try what ever configuration you want, you can also modify the size of the screen by defining your own macro "SIZE", then the screen will be SIZExSIZE (50x50 by default)