1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-19 17:47:53 +03:00
mal/miniMAL/step3_env.json
2015-02-16 00:33:30 -06:00

75 lines
2.4 KiB
JSON

["do",
["load-file", ["`", "miniMAL-core.json"]],
["load-file", ["`", "types.json"]],
["load-file", ["`", "reader.json"]],
["load-file", ["`", "printer.json"]],
["load-file", ["`", "env.json"]],
["def", "READ", ["fn", ["strng"],
["read-str", "strng"]]],
["def", "eval-ast", ["fn", ["ast", "env"],
["if", ["symbol?", "ast"],
["env-get", "env", "ast"],
["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", "LET", ["fn", ["env", "args"],
["if", [">", ["count", "args"], 0],
["do",
["env-set", "env", ["nth", "args", 0],
["EVAL", ["nth", "args", 1], "env"]],
["LET", "env", ["rest", ["rest", "args"]]]]]]],
["def", "EVAL", ["fn", ["ast", "env"],
["if", ["not", ["list?", "ast"]],
["eval-ast", "ast", "env"],
["let", ["a0", ["get", ["first", "ast"], ["`", "val"]]],
["if", ["=", ["`", "def!"], "a0"],
["env-set", "env", ["nth", "ast", 1],
["EVAL", ["nth", "ast", 2], "env"]],
["if", ["=", ["`", "let*"], "a0"],
["let", ["let-env", ["env-new", "env"]],
["do",
["LET", "let-env", ["nth", "ast", 1]],
["EVAL", ["nth", "ast", 2], "let-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", ["env-new"]],
["env-set", "repl-env", ["symbol", ["`", "+"]], "+"],
["env-set", "repl-env", ["symbol", ["`", "-"]], "-"],
["env-set", "repl-env", ["symbol", ["`", "*"]], "*"],
["def", "div", ["fn", ["a", "b"], ["parseInt", ["/", "a", "b"]]]],
["env-set", "repl-env", ["symbol", ["`", "/"]], "div"],
["def", "rep", ["fn", ["strng"],
["try",
["PRINT", ["EVAL", ["READ", "strng"], "repl-env"]],
["catch", "exc",
["str", ["`", "Error: "], [".", "exc", ["`", "toString"]]]]]]],
["repl", ["`", "user> "], "rep"],
null
]