From 86b689f3d7111a9fa13da389a30f3dfdf877d1a4 Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Sat, 19 Apr 2014 13:04:09 -0500 Subject: All: *ARGV* and *host-language*. Misc syncing/fixes. --- python/step4_if_fn_do.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'python/step4_if_fn_do.py') diff --git a/python/step4_if_fn_do.py b/python/step4_if_fn_do.py index a06d10b..e99cfcf 100644 --- a/python/step4_if_fn_do.py +++ b/python/step4_if_fn_do.py @@ -27,7 +27,7 @@ def eval_ast(ast, env): return ast # primitive value, return unchanged def EVAL(ast, env): - #print("EVAL %s" % ast) + #print("EVAL %s" % printer._pr_str(ast)) if not types._list_Q(ast): return eval_ast(ast, env) @@ -79,6 +79,7 @@ for k, v in core.ns.items(): repl_env.set(k, v) # core.mal: defined using the language itself REP("(def! not (fn* (a) (if a false true)))") +# repl loop while True: try: line = mal_readline.readline("user> ") -- cgit v1.2.3