mod ast; mod parser; fn main() { let a = "hello( )"; let (_rest, res) = parser::expr(a).unwrap(); dbg!(res); println!("Hello, world!"); }