Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/aligusnet/game-of-life
- Owner: aligusnet
- Created: 2018-12-15T10:47:00.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-22T12:45:33.000Z (about 6 years ago)
- Last Synced: 2024-11-19T07:41:54.795Z (3 months ago)
- Topics: elm, elm-lang, game-of-life
- Language: Elm
- Homepage: https://gameoflife.z6.web.core.windows.net/
- Size: 42 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.