lobe 0.1.1

A fast, cross-platform Brainfuck interpreter written in Rust
Documentation

Lobe

A fast, cross-platform Brainfuck interpreter written in Rust

Install

cargo install lobe

Or from source:

git clone https://github.com/Aspenini/Lobe.git

cd Lobe

cargo build --release

Use

CLI:

lobe program.bf

Library:

cargo add lobe

use lobe::create_runtime;

let mut runtime = create_runtime("++++.").unwrap();
runtime.run().unwrap();

Features

  • Bytecode-based execution
  • Dynamic tape growth
  • Cross-platform

License

MIT