aboutsummaryrefslogtreecommitdiff
path: root/python/step5_tco.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/step5_tco.py')
-rw-r--r--python/step5_tco.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/step5_tco.py b/python/step5_tco.py
index cbb92c9..da338d4 100644
--- a/python/step5_tco.py
+++ b/python/step5_tco.py
@@ -83,7 +83,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)))")