1 2 3 4 5 6 7 8 9 10 11 12 13 14
pub mod env; pub mod error; pub mod expr; pub mod lex; pub mod number; pub mod parse; #[macro_use] mod primitives; use std::collections::HashMap; use expr::LispExpr; pub type Environment = HashMap<String, LispExpr>;