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.
|
3 years ago | |
---|---|---|
src | 3 years ago | |
.gitignore | 3 years ago | |
Cargo.toml | 3 years ago | |
README.md | 3 years ago | |
demo.png | 3 years ago |
README.md
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