Skip to content

Shresht7/Game-of-Life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Topics

Resources

License

Stars

Watchers

Forks

Contributors

Languages