pub mod env; pub mod error; pub mod expr; pub mod lex; pub mod number; pub mod parse; mod primitives; use std::collections::HashMap; use expr::LispExpr; pub type Environment = HashMap;