https://github.com/pooulad/gol
🚨Create game of life with C and Go
https://github.com/pooulad/gol
c ebitengine game-of-life golang
Last synced: about 1 month ago
JSON representation
🚨Create game of life with C and Go
- Host: GitHub
- URL: https://github.com/pooulad/gol
- Owner: pooulad
- License: mit
- Created: 2023-11-27T13:08:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-27T16:31:41.000Z (over 2 years ago)
- Last Synced: 2025-06-18T10:52:43.825Z (12 months ago)
- Topics: c, ebitengine, game-of-life, golang
- Language: C
- Homepage:
- Size: 3.79 MB
- Stars: 3
- 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 Go
Try 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
```

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