Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eze-kiel/game-of-life
Conway's Game Of Life developped in Golang
https://github.com/eze-kiel/game-of-life
Last synced: 4 days ago
JSON representation
Conway's Game Of Life developped in Golang
- Host: GitHub
- URL: https://github.com/eze-kiel/game-of-life
- Owner: eze-kiel
- Created: 2019-08-14T14:51:15.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-17T16:18:41.000Z (about 5 years ago)
- Last Synced: 2023-03-04T17:44:59.724Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Conway's Game Of Life
A Go program that simulates Conway's game of life in a terminal.## Demo
[![asciicast](https://asciinema.org/a/x0RkG1e9SrTwxttRG9rS436iH.svg)](https://asciinema.org/a/x0RkG1e9SrTwxttRG9rS436iH)
## Rules
Any live cell with fewer than two live neighbours dies.
Any live cell with two or three live neighbours lives on to the next generation.
Any live cell with more than three live neighbours dies.
Any dead cell with exactly three live neighbours becomes a live cell.