aboutsummaryrefslogtreecommitdiff
path: root/matlab/step2_eval.m
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-02-08 20:35:44 -0600
committerJoel Martin <github@martintribe.org>2015-02-08 23:51:47 -0600
commitc4033aab513035999bb322b2063b6fbf57bedc97 (patch)
tree6000856d742db0a89328096a4142df09f3e29cb8 /matlab/step2_eval.m
parentc3023f2642064bb416bc6b817ab5ea80fec29fce (diff)
downloadmal-c4033aab513035999bb322b2063b6fbf57bedc97.tar.gz
mal-c4033aab513035999bb322b2063b6fbf57bedc97.zip
matlab: add step8
Diffstat (limited to 'matlab/step2_eval.m')
-rw-r--r--matlab/step2_eval.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/matlab/step2_eval.m b/matlab/step2_eval.m
index 4ce13fb..a388145 100644
--- a/matlab/step2_eval.m
+++ b/matlab/step2_eval.m
@@ -21,7 +21,7 @@ function ret = eval_ast(ast, env)
end
function ret = EVAL(ast, env)
- if ~iscell(ast),
+ if ~iscell(ast)
ret = eval_ast(ast, env);
return;
end