blob: a52baa0de0f156bad2ab0437a1c3921098668e83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
pub mod error;
pub mod eval;
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<String, LispExpr>;
|