aboutsummaryrefslogtreecommitdiff
path: root/python/step0_repl.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/step0_repl.py')
-rw-r--r--python/step0_repl.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/python/step0_repl.py b/python/step0_repl.py
index d915989..3e5801b 100644
--- a/python/step0_repl.py
+++ b/python/step0_repl.py
@@ -7,12 +7,8 @@ def READ(str):
# eval
def EVAL(ast, env):
- # try it as an expression then a statement
- try:
- return eval(ast)
- except SyntaxError:
- exec(compile(ast, '', 'single'), globals())
- return None
+ #print("EVAL %s" % printer._pr_str(ast))
+ return ast
# print
def PRINT(exp):