Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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

![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)