To run this program, first download this directory.
Navigate to it in terminal, then type:
make
then:
./gameoflife
- Any live cell with fewer than two live neighbours dies, as if by underpopulation.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any live cell with more than three live neighbours dies, as if by overpopulation.
- Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
You can put in a textfile, like myinput.txt, to run the program with different data.