Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kvizyx/gof
game of life
https://github.com/kvizyx/gof
biden-2024 black-lives-matter body-positive just-stop-oil lgbt
Last synced: 23 days ago
JSON representation
game of life
- Host: GitHub
- URL: https://github.com/kvizyx/gof
- Owner: kvizyx
- Created: 2023-11-02T15:15:57.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-12T16:32:49.000Z (about 1 year ago)
- Last Synced: 2024-11-05T09:22:08.672Z (2 months ago)
- Language: C++
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 launch
## Prerequisites
- `g++` compiler
- `make`With default settings:
```console
$ make
```
With custom height and width
```console
$ make build
$ ./gof --h [HEIGHT] --w [WIDTH]
```