https://github.com/juanmartincoder/gameoflifego
A basic Terminal Game of Life simulation by John Horton Conway made in Golang
https://github.com/juanmartincoder/gameoflifego
Last synced: 12 months ago
JSON representation
A basic Terminal Game of Life simulation by John Horton Conway made in Golang
- Host: GitHub
- URL: https://github.com/juanmartincoder/gameoflifego
- Owner: JuanMartinCoder
- Created: 2025-03-26T15:32:06.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-22T22:45:22.000Z (about 1 year ago)
- Last Synced: 2025-06-07T08:42:00.705Z (about 1 year ago)
- Language: Go
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GameOfLifeGo
Game of Life in Go
## what is this?
This is a simple implementation of Conway's Game of Life in Go for the Terminal.
I use unicode characters to draw the grid and the cells and basically update the game status every second and display the new state.
## how to run?
```go
go run .
```