2.0.0 • Published 4 months ago

yabfr v2.0.0

Weekly downloads
-
License
LGPL-3.0
Repository
github
Last release
4 months ago

yabfr (yet another brainf**k in rust)

blazingly fast brainf**k interpreter made in rust

usage

wasm:

npm install yabfr
import { run } from "yabfr";

const output = run("brainf**k program");

console.log(output);

rust

use yabfr::run;

let output = run("++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.");

println!("{}", output)
2.0.0

4 months ago