/GOL

Game of life in C

Primary LanguageC

Game of Life

A simple implementation in C of the John Conway's Game of Life.

Instalation guide

First compile the sources with the following command:
$ gcc -o gol gol.c
Then simply run the program:
$ ./gol
You can see all the program options by calling it with the flag -h
$ ./gol -h
You may need to set the execute permission to run the program: $ chmod +x gol

Demo

GoL_Demo