Merge pull request #217 from dubek/lua-interop
[jackhill/mal.git] / julia / step3_env.jl
index c0bcde1..91f80ca 100755 (executable)
@@ -26,6 +26,7 @@ end
 
 function EVAL(ast, env)
     if !isa(ast, Array) return eval_ast(ast, env) end
+    if isempty(ast) return ast end
 
     # apply
     if     :def! == ast[1]