Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aligusnet/game-of-life

Conway's Game of Life
https://github.com/aligusnet/game-of-life

elm elm-lang game-of-life

Last synced: 21 days ago
JSON representation

Conway's Game of Life

Awesome Lists containing this project

README

        

# Conway's Game of Life

## Rules

As described in [Wikipedia](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life):

1. Any live cell with fewer than two live neighbors dies, as if by underpopulation.
2. Any live cell with two or three live neighbors lives on to the next generation.
3. Any live cell with more than three live neighbors dies, as if by overpopulation.
4. Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.