Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 550 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 550 Bytes

cgol

An implementation of Conway's Game of Life.

The Rules

  1. A neighbour is a cell horizontally, vertically or diagonally adjacent to the cell.
  2. A cell with life must have two or three neighbours to survive.
  3. Any empty cell comes to life if it have tree living neighbours.

Note

The primary purpose of this repo is not to create an implementation of Conway's Game of Life. It's more about testing things. The collections of commits this update came with was mainly an excuse to try signing commits and get a TDD-setup running.