Files
brainfuck-rs/README.md
2025-04-22 03:39:23 +02:00

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