Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 749 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 749 Bytes

This is an implementation of John Conway's Game of Life written in Go. The Game of Life, also known simply as Life, is a cellular automation invented by English mathematician John Conway in 1970. It is a zero-player game, in which one creates an initial state, and then only observes how it evolves. The game allows you to create Turing complete processes, which allows you to simulate any Turing machine.

Community: https://conwaylife.com/.

Start the game

Clear the screen first (Cmd + K or Ctrl + K).

go run main.go

The program will randomly create approximately 25% living cells as the initial state and update the state 4 times per second.