matlab: fix do/slice, strings. Self-hosting!
[jackhill/mal.git] / matlab / step4_if_fn_do.m
index 0e24b28..a864194 100644 (file)
@@ -33,6 +33,7 @@ function ret = eval_ast(ast, env)
 end
 
 function ret = EVAL(ast, env)
+    %fprintf('EVAL: %s\n', printer.pr_str(ast, true));
     if ~types.list_Q(ast)
         ret = eval_ast(ast, env);
         return;