pub mod parser; pub mod ast; pub mod eval; pub mod primitives; pub fn my_fn() -> bool { true } #[cfg(test)] mod tests { use super::*; #[test] fn it_works() { assert!(my_fn()); } }