1#![deny(clippy::unwrap_used)] 2#![deny(clippy::expect_used)] 3#![allow(clippy::module_inception)] 4 5pub mod ast; 6pub mod lexer; 7pub mod parser;