blob: 5166a04bdcb75a0e2435f9185c7314d948d4f76c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
pub mod env;
pub mod error;
pub mod expr;
pub mod lex;
pub mod number;
pub mod parse;
use std::collections::HashMap;
use expr::LispExpr;
pub type Environment = HashMap<String, LispExpr>;
|