1pub mod ast; 2pub mod interpreter; 3pub mod lexer; 4pub mod parser; 5 6pub fn base_prng_engine() -> f64 { 7 rand::random::<f64>() 8}