pub type Env = HashMap<VarId, Value>;
Evaluation environment: variable bindings. Uses im::HashMap for O(1) clone (structural sharing).
pub struct Env { /* private fields */ }