aboutsummaryrefslogtreecommitdiff
path: root/src/lisp/mod.rs
blob: 2a19314ccb6ddd5655817fd9ef692550a893144d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod env;
pub mod error;
pub mod expr;
pub mod lex;
pub mod number;
pub mod parse;
#[macro_use]
mod primitives;

use std::collections::HashMap;

use expr::LispExpr;

pub type Environment = HashMap<String, LispExpr>;