12 lines
221 B
Rust
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);
|
|
}
|