diff options
| author | Joel Martin <github@martintribe.org> | 2014-10-27 23:20:22 -0500 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2015-01-06 21:59:01 -0600 |
| commit | 77b2da6cf337bbd85914619bfbccba69b6621a04 (patch) | |
| tree | afa9bcca8e965363962d585f312cb76eb14f8183 /rust/src/step2_eval.rs | |
| parent | bd3067230dcbd18fb1f0db7abb52c4ea1c2e227b (diff) | |
| download | mal-77b2da6cf337bbd85914619bfbccba69b6621a04.tar.gz mal-77b2da6cf337bbd85914619bfbccba69b6621a04.zip | |
rust: add conj, stepA. Self-hosting!
Diffstat (limited to 'rust/src/step2_eval.rs')
| -rw-r--r-- | rust/src/step2_eval.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/step2_eval.rs b/rust/src/step2_eval.rs index 9e33042..2cf7897 100644 --- a/rust/src/step2_eval.rs +++ b/rust/src/step2_eval.rs @@ -38,7 +38,7 @@ fn eval_ast(ast: MalVal, env: &HashMap<String,MalVal>) -> MalRet { } } Ok(match *ast { List(_,_) => list(ast_vec), - _ => vector(ast_vec) }) + _ => vector(ast_vec) }) }, Hash_Map(ref hm,_) => { let mut new_hm: HashMap<String,MalVal> = HashMap::new(); |
