Skip to content

A simple Game of Life implementation.

codelirium/game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

A simple Game of Life implementation.

Requirements:

A cell can be made "alive".

A cell can be "killed".

A cell with fewer than two live neighbours dies of under-population.

A cell with 2 or 3 live neighbours lives on to the next generation.

A cell with more than 3 live neighbours dies of overcrowding.

An empty cell with exactly 3 live neighbours "comes to life".

The board should wrap.

About

A simple Game of Life implementation.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages