aboutsummaryrefslogtreecommitdiff
path: root/rust/src/step2_eval.rs
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-10-25 14:02:42 -0500
committerJoel Martin <github@martintribe.org>2015-01-06 21:58:57 -0600
commit0a4d62f2f8362290dfc956ba5c948794a77a6e4d (patch)
treeedf2cd63393da7c4f27068e236d13a3a4e32d530 /rust/src/step2_eval.rs
parent8f5b0f1040de849da3fb5ade645308e7bbe7f025 (diff)
downloadmal-0a4d62f2f8362290dfc956ba5c948794a77a6e4d.tar.gz
mal-0a4d62f2f8362290dfc956ba5c948794a77a6e4d.zip
rust: add step4_if_fn_do
Diffstat (limited to 'rust/src/step2_eval.rs')
-rw-r--r--rust/src/step2_eval.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/src/step2_eval.rs b/rust/src/step2_eval.rs
index 8d28a0f..11c1884 100644
--- a/rust/src/step2_eval.rs
+++ b/rust/src/step2_eval.rs
@@ -10,6 +10,7 @@ use std::collections::HashMap;
use types::{MalVal,MalRet,Nil,Int,Sym,List,Func};
mod readline;
mod types;
+mod env;
mod reader;
mod printer;