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