From 18d8ca7bd5ee66d03b19c2bcce7ba4f9a292e69c Mon Sep 17 00:00:00 2001 From: greg Date: Mon, 4 Dec 2017 03:06:54 -0800 Subject: [PATCH] Special forms list --- src/rukka_lang/mod.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/rukka_lang/mod.rs b/src/rukka_lang/mod.rs index b2495a7..3db3057 100644 --- a/src/rukka_lang/mod.rs +++ b/src/rukka_lang/mod.rs @@ -61,7 +61,15 @@ impl EvaluatorState { match first { &SymbolAtom(ref sym) => match &sym[..] { "quote" => unimplemented!(), - _ => unimplemented!(), + "eq?" => unimplemented!(), + "cons" => unimplemented!(), + "car" => unimplemented!(), + "cdr" => unimplemented!(), + "atom?" => unimplemented!(), + "define" => unimplemented!(), + "lambda" => unimplemented!(), + "cond" => unimplemented!(), + x => unimplemented!(), }, _ => unimplemented!() }