Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pooulad/gol
🚨Create game of life with C
https://github.com/pooulad/gol
c game-of-life
Last synced: about 4 hours ago
JSON representation
🚨Create game of life with C
- Host: GitHub
- URL: https://github.com/pooulad/gol
- Owner: pooulad
- License: mit
- Created: 2023-11-27T13:08:36.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2023-11-27T15:58:51.000Z (12 months ago)
- Last Synced: 2023-11-27T16:01:27.096Z (12 months ago)
- Topics: c, game-of-life
- Language: C
- Homepage:
- Size: 1.03 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gol
🚨Create game of life with C and GoTry it for fun :)
### Run in C:
```bash
git clone https://github.com/pooulad/gol.git
```
```bash
cd ./gol/c
```
```bash
cd ./c
```
```bash
gcc life.c
```
```bash
./a.out
```![c_demo](https://github.com/pooulad/gol/blob/main/images/c_game.png)
### Run in go:
Make sure you installed all dependencies in https://ebitengine.org/
After install all required tools run:
```bash
git clone https://github.com/pooulad/gol.git
```
```bash
cd ./gol/go
```
```bash
make run
```
OR
```bash
go run life.go
```![go_demo](https://github.com/pooulad/gol/blob/main/images/go_game.png)