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

https://github.com/ragibasif/rule110

Rule 110 implementation in C programming language.
https://github.com/ragibasif/rule110

c c-programming c-programming-language cellular-automata cellular-automaton cli command-line game-of-life rule110

Last synced: 26 days ago
JSON representation

Rule 110 implementation in C programming language.

Awesome Lists containing this project

README

        

# Rule 110

An implementation of [Rule 110](https://en.wikipedia.org/wiki/Rule_110) written in standard C (C99) and uses GNU Make for building.

rule110-demo-0

## Usage

### Installation

Clone the repository.

```bash
git clone [email protected]:ragibasif/rule110.git
```

Make sure you have `gcc` and `make` installed.

### Build the project

```bash
make
```

### Run the executable

```bash
./rule110
```

### Clean build files

```bash
make clean
```