Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.