mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
ea81a8087b
- types: low-level mapping to the implementation language. - core: functions on types that are exposed directly to mal. - printer: implementation called by pr-str, str, prn, println. - env: the environment implementation - Also, unindent all TCO while loops so that the diff of step4 and step5 are minimized.
76 lines
1.9 KiB
Python
76 lines
1.9 KiB
Python
import sys, traceback
|
|
import mal_readline
|
|
import mal_types as types
|
|
import reader, printer
|
|
from env import Env
|
|
|
|
# read
|
|
def READ(str):
|
|
return reader.read_str(str)
|
|
|
|
# eval
|
|
def eval_ast(ast, env):
|
|
if types._symbol_Q(ast):
|
|
return env.get(ast)
|
|
elif types._list_Q(ast):
|
|
return types._list(*map(lambda a: EVAL(a, env), ast))
|
|
elif types._vector_Q(ast):
|
|
return types._vector(*map(lambda a: EVAL(a, env), ast))
|
|
elif types._hash_map_Q(ast):
|
|
keyvals = []
|
|
for k in ast.keys():
|
|
keyvals.append(EVAL(k, env))
|
|
keyvals.append(EVAL(ast[k], env))
|
|
return types._hash_map(*keyvals)
|
|
else:
|
|
return ast # primitive value, return unchanged
|
|
|
|
def EVAL(ast, env):
|
|
#print("EVAL %s" % ast)
|
|
if not types._list_Q(ast):
|
|
return eval_ast(ast, env)
|
|
|
|
# apply list
|
|
if len(ast) == 0: return ast
|
|
a0 = ast[0]
|
|
|
|
if "def!" == a0:
|
|
a1, a2 = ast[1], ast[2]
|
|
res = EVAL(a2, env)
|
|
return env.set(a1, res)
|
|
elif "let*" == a0:
|
|
a1, a2 = ast[1], ast[2]
|
|
let_env = Env(env)
|
|
for i in range(0, len(a1), 2):
|
|
let_env.set(a1[i], EVAL(a1[i+1], let_env))
|
|
return EVAL(a2, let_env)
|
|
else:
|
|
el = eval_ast(ast, env)
|
|
f = el[0]
|
|
return f(*el[1:])
|
|
|
|
# print
|
|
def PRINT(exp):
|
|
return printer._pr_str(exp)
|
|
|
|
# repl
|
|
repl_env = Env()
|
|
def REP(str):
|
|
return PRINT(EVAL(READ(str), repl_env))
|
|
def _ref(k,v): repl_env.set(k, v)
|
|
|
|
_ref('+', lambda a,b: a+b)
|
|
_ref('-', lambda a,b: a-b)
|
|
_ref('*', lambda a,b: a*b)
|
|
_ref('/', lambda a,b: a/b)
|
|
|
|
while True:
|
|
try:
|
|
line = mal_readline.readline("user> ")
|
|
if line == None: break
|
|
if line == "": continue
|
|
print(REP(line))
|
|
except reader.Blank: continue
|
|
except Exception as e:
|
|
print "".join(traceback.format_exception(*sys.exc_info()))
|