Handle top-level empty list

This commit is contained in:
greg 2017-12-04 03:01:47 -08:00
parent 107897ec97
commit 502497687a
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ impl EvaluatorState {
expr @ NumberAtom(_) => expr, expr @ NumberAtom(_) => expr,
List(items) => { List(items) => {
if items.len() == 0 { if items.len() == 0 {
return Err(format!("Empty list")) return Ok(List(items))
} }
let ref first = items[0]; let ref first = items[0];
match first { match first {