aboutsummaryrefslogtreecommitdiff
path: root/src/lisp/mod.rs
blob: 87a272053894bc0de66c04786ac8f46a21c90a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod error;
pub mod eval;
pub mod expr;
pub mod lex;
pub mod number;
pub mod parse;
pub mod prelude;

use std::collections::HashMap;

use expr::LispExpr;

pub type Environment = HashMap<String, LispExpr>;
pub type EnvList = Vec<Environment>;