bfrunner_macro 0.1.1

Compile time macro for you to enjoy brainfuck in rust.
Documentation

bfrunner-macro

Now you are off the deep end

This is no longer funny now you want to run Brainfuck at compile time???

Well sure whatever, heres how:

use bfrunner_macro::bf;

fn main() {
    let output = bf!(
        "++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++."
    );
    println!("{output}");
}