aboutsummaryrefslogtreecommitdiff
path: root/python/step4_if_fn_do.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/step4_if_fn_do.py')
-rw-r--r--python/step4_if_fn_do.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/step4_if_fn_do.py b/python/step4_if_fn_do.py
index e99cfcf..39b9dd6 100644
--- a/python/step4_if_fn_do.py
+++ b/python/step4_if_fn_do.py
@@ -74,7 +74,7 @@ def REP(str):
return PRINT(EVAL(READ(str), repl_env))
# core.py: defined using python
-for k, v in core.ns.items(): repl_env.set(k, v)
+for k, v in core.ns.items(): repl_env.set(types._symbol(k), v)
# core.mal: defined using the language itself
REP("(def! not (fn* (a) (if a false true)))")