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

https://github.com/kvizyx/gof

Game of Life!
https://github.com/kvizyx/gof

cpp game-of-life

Last synced: about 1 year ago
JSON representation

Game of Life!

Awesome Lists containing this project

README

          

# Game of Life
Simple implementation of [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life)

# How to play

## Prerequisites
- `g++` compiler
- `make` (if you want to use build script)

## Launch
With default settings:
```console
$ make
```
With custom height and width
```console
$ make build
$ ./gof --h [HEIGHT] --w [WIDTH]
```