This is a learning journey project, expect a lot of newbie C code!
A very naive implementation of the Conway's game of live written in C. Made for a college presentation.
To compile and execute, run make run in the cloned directory. Modify world state in the automatas.h file by adding live cells.
By default the world update each 250000 miliseconds.
- Every dead cell with exacly three live neighboors become alive.
- Every live cell with less than two neighboors dies from underporpulation.
- Every live cell with more than tree live neighboors dies from overpopulation;
- Every live cell with only two live neighboors stays alive.
