1 2 3 4 5 6 7 8 9 10 11 12
use std::fs; use brono::*; fn main() { let code = fs::read_to_string("parsing_tests/1.brono").unwrap(); let mut compiler = Compiler::new(); let _ = compiler.compile(&code).unwrap(); println!("{:#?}", compiler); }