You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
690 B
16 lines
690 B
3 years ago
|
# brainfuck
|
||
|
|
||
|
This is a brainfuck interpreter with an interractive mode written in rust which can read from files; you can also read from piped data but reading user input "," will not work.
|
||
|
It can also run in --interractive mode (-i) or with --verbose (-v) which for now only shows what the memory looks like after the code is executed.
|
||
|
If a file is specified in interractive mode it will run first.
|
||
|
You can quit with Control-C.
|
||
|
|
||
|
## Building from source
|
||
|
You need to have rust and cargo installed and be in the project directory
|
||
|
|
||
|
cargo build --release
|
||
|
|
||
|
You can then find the executable at `target/release/brainfuck` or run with `cargo run --release` directly
|
||
|
|
||
|

|