https://github.com/hoangvvo/game-of-life
Conway's Game of Life in multiple languages (Currently Go and C++)
https://github.com/hoangvvo/game-of-life
Last synced: 3 months ago
JSON representation
Conway's Game of Life in multiple languages (Currently Go and C++)
- Host: GitHub
- URL: https://github.com/hoangvvo/game-of-life
- Owner: hoangvvo
- License: mit
- Created: 2022-05-08T00:26:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-08T02:22:27.000Z (about 3 years ago)
- Last Synced: 2025-02-09T21:41:19.223Z (4 months ago)
- Language: C++
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# conway's game of life implements in Go and C++
Game: http://pi.math.cornell.edu/~lipa/mec/lesson6.html
**Go**
```bash
go run main.go
```**C++**
```bash
g++ -std=c++11 main.cpp -o main && ./main
```