lobe

Crates.iolobe
lib.rslobe
version0.1.3
created_at2025-11-02 19:27:43.811542+00
updated_at2025-11-28 03:40:28.268873+00
descriptionA fast, cross-platform Brainfuck interpreter written in Rust
homepage
repositoryhttps://github.com/Aspenini/Lobe
max_upload_size
id1913477
size519,534
Aspen (Aspenini)

documentation

README

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
  • Fixed 30,000 cell tape (original Brainfuck specification)
  • Pointer wrapping at tape boundaries
  • Cross-platform

License

MIT

Commit count: 0

cargo fmt