bfrunner_macro 0.1.1

Compile time macro for you to enjoy brainfuck in rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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:

```rust
use bfrunner_macro::bf;

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