An open API service indexing awesome lists of open source software.

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++)

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
```