1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/miniMAL/step2_eval.json
2015-02-16 00:33:30 -06:00

61 lines
1.7 KiB
JSON

["do",
["load-file", ["`", "miniMAL-core.json"]],
["load-file", ["`", "types.json"]],
["load-file", ["`", "reader.json"]],
["load-file", ["`", "printer.json"]],
["def", "READ", ["fn", ["strng"],
["read-str", "strng"]]],
["def", "eval-ast", ["fn", ["ast", "env"],
["if", ["symbol?", "ast"],
["let", ["sym", ["get", "ast", ["`", "val"]]],
["if", ["contains?", "env", "sym"],
["get", "env", "sym"],
["throw", ["str", ["`", "'"], "sym", ["`", "' not found"]]]]],
["if", ["list?", "ast"],
["map", ["fn", ["x"], ["EVAL", "x", "env"]], "ast"],
["if", ["vector?", "ast"],
["vectorl", ["map", ["fn", ["x"], ["EVAL", "x", "env"]], "ast"]],
["if", ["map?", "ast"],
["let", ["new-hm", ["hash-map"]],
["do",
["map", ["fn", ["k"], ["set", "new-hm",
["EVAL", "k", "env"],
["EVAL", ["get", "ast", "k"], "env"]]],
["keys", "ast"]],
"new-hm"]],
"ast"]]]]]],
["def", "EVAL", ["fn", ["ast", "env"],
["if", ["not", ["list?", "ast"]],
["eval-ast", "ast", "env"],
["let", ["el", ["eval-ast", "ast", "env"],
"f", ["first", "el"],
"args", ["rest", "el"]],
["apply", "f", "args"]]]]],
["def", "PRINT", ["fn", ["exp"],
["pr-str", "exp", true]]],
["def", "repl-env",
["hash-map",
["`", "+"], "+",
["`", "-"], "-",
["`", "*"], "*",
["`", "/"], ["fn", ["a", "b"], ["parseInt", ["/", "a", "b"]]]]],
["def", "rep", ["fn", ["strng"],
["try",
["PRINT", ["EVAL", ["READ", "strng"], "repl-env"]],
["catch", "exc",
["str", ["`", "Error: "], [".", "exc", ["`", "toString"]]]]]]],
["repl", ["`", "user> "], "rep"],
null
]