reid-llvm/examples/macro_easy.reid

6 lines
180 B
Plaintext

fn main() -> u8 {
// let message = String::from(include_bytes!("./macro_easy_file.txt"));
let bytes = test_macro!("./examples/macro_easy_file.txt");
return bytes[0];
}