aboutsummaryrefslogtreecommitdiff
path: root/src/lisp/mod.rs
blob: dc0883514603a7a44ca257cef075ed88ff506ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod env;
pub mod error;
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>;