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

https://github.com/meownoid/brainfuck-interpreter

Interpreter of the brainfuck programming language
https://github.com/meownoid/brainfuck-interpreter

brainfuck brainfuck-interpreter c parsing

Last synced: 12 months ago
JSON representation

Interpreter of the brainfuck programming language

Awesome Lists containing this project

README

          

# Brainfuck interpreter

This is a simple brainfuck programming language interpreter written in C. Because everyone should write one.

#### Build

```shell script
make
```

#### Use
```shell script
./cbf file.bf
```

#### Debug
You can use `@` symbol for printing out current memory state. If you don't want this, set `DEBUG_ENABLED` to `0`.