//! Evaluation of syntax trees. mod dict; mod scope; mod state; mod value; pub use dict::*; pub use scope::*; pub use state::*; pub use value::*;