Special forms list
This commit is contained in:
parent
d84def35e7
commit
46ae176498
@ -61,7 +61,15 @@ impl EvaluatorState {
|
|||||||
match first {
|
match first {
|
||||||
&SymbolAtom(ref sym) => match &sym[..] {
|
&SymbolAtom(ref sym) => match &sym[..] {
|
||||||
"quote" => unimplemented!(),
|
"quote" => unimplemented!(),
|
||||||
_ => unimplemented!(),
|
"eq?" => unimplemented!(),
|
||||||
|
"cons" => unimplemented!(),
|
||||||
|
"car" => unimplemented!(),
|
||||||
|
"cdr" => unimplemented!(),
|
||||||
|
"atom?" => unimplemented!(),
|
||||||
|
"define" => unimplemented!(),
|
||||||
|
"lambda" => unimplemented!(),
|
||||||
|
"cond" => unimplemented!(),
|
||||||
|
x => unimplemented!(),
|
||||||
},
|
},
|
||||||
_ => unimplemented!()
|
_ => unimplemented!()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user