456 B
456 B
brainfuck-rs
This is a simple brainfuck implementation is Rust
Why? Because I needed it for a university assignment.
Usage
Compile using cargo, then provide a file with the brainfuck code:
$ cargo run -- examples/hello_world.bf
Hello World!
Also has some debug prints:
$ RUST_LOG=info cargo run -- examples/hello_world.bf
$ RUST_LOG=debug cargo run -- examples/hello_world.bf