Shresht7 / Game-of-Life

John Conway's Game-of-Life in the terminal

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Game-of-Life


John Conway's Game-of-Life in the terminal.

Demo

Note

Just a simple program I made while learning Go!

Rules

The universe of the Game of Life is an infinite, two-dimensional orthogonal grid of square cells, each of which is in one of two possible states, live or dead (or populated and unpopulated, respectively). Every cell interacts with its eight neighbors, which are the cells that are horizontally, vertically, or diagonally adjacent. At each step in time, the following transitions occur:

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

Source: https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life

About

John Conway's Game-of-Life in the terminal

License:MIT License


Languages

Language:Go 100.0%