reid-llvm/reid/examples/array.rs
2025-07-13 17:33:38 +03:00

12 lines
221 B
Rust

use reid::compile;
pub static ARRAY: &str = include_str!("./reid/array.reid");
fn main() {
let text = match compile(ARRAY) {
Ok(t) => t,
Err(e) => panic!("{}", e),
};
println!("{}", text);
}