DanielKirshner / GameOfLife

Conway's Game of Life in C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GameOfLife

Conway's Game of Life in C++

Rules

  • Any live cell with two or three live neighbors survives.
  • Any dead cell with three live neighbors becomes alive.
  • All other live cells die in the next generation. Similarly, all other dead cells stay dead.

About

Conway's Game of Life in C++

License:MIT License


Languages

Language:C++ 97.8%Language:Makefile 2.2%