A customizable command line brainfuck interpreter.
For acquiring the precompiled binaries, have a look at the releases page.
Building with Cargo:
sh
$ git clone https://github.com/naakaamura/sour.git
$ cd sour
$ cargo build --release
Installing from Crates.io:
sh
$ cargo install sour
```
Usage: sour [OPTIONS]
Arguments:
Options:
-s, --size
Interpreting from a file ```sh $ sour hello-world.bf
```
Interpreting raw byte values from a file ```sh $ sour hello-world.bf -r
```
Interpreting from raw brainfuck content ```sh $ sour +++++.
```