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.
- Host: GitHub
- URL: https://github.com/ragibasif/rule110
- Owner: ragibasif
- License: mit
- Created: 2025-04-27T21:41:32.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2025-04-27T21:47:16.000Z (about 1 month ago)
- Last Synced: 2025-04-27T22:27:11.458Z (about 1 month ago)
- Topics: c, c-programming, c-programming-language, cellular-automata, cellular-automaton, cli, command-line, game-of-life, rule110
- Language: C
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
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.
## 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
```