A fast, cross-platform Brainfuck interpreter written in Rust
cargo install lobeOr from source:
git clone https://github.com/Aspenini/Lobe.git
cd Lobe
cargo build --releaseCLI:
lobe program.bfLibrary:
cargo add lobeuse lobe::create_runtime;
let mut runtime = create_runtime("++++.").unwrap();
runtime.run().unwrap();- Bytecode-based execution
- Fixed 30,000 cell tape (original Brainfuck specification)
- Pointer wrapping at tape boundaries
- Cross-platform
MIT