https://github.com/shresht7/game-of-life
John Conway's Game-of-Life in the terminal
https://github.com/shresht7/game-of-life
cli go
Last synced: 2 months ago
JSON representation
John Conway's Game-of-Life in the terminal
- Host: GitHub
- URL: https://github.com/shresht7/game-of-life
- Owner: Shresht7
- License: mit
- Created: 2022-01-28T18:05:26.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-18T11:13:07.000Z (about 1 year ago)
- Last Synced: 2025-01-27T09:09:41.041Z (4 months ago)
- Topics: cli, go
- Language: Go
- Homepage:
- Size: 2.06 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Game-of-Life
--------------[John Conway's Game-of-Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) in the terminal.

> [!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