| Crates.io | bfrunner_macro |
| lib.rs | bfrunner_macro |
| version | 0.1.1 |
| created_at | 2026-01-21 01:33:57.278396+00 |
| updated_at | 2026-01-21 01:39:54.20185+00 |
| description | Compile time macro for you to enjoy brainfuck in rust. |
| homepage | |
| repository | https://github.com/NekoTheCatgirl/bfrunner |
| max_upload_size | |
| id | 2058015 |
| size | 4,611 |
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}");
}