1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 21:57:38 +03:00
mal/impls/miniMAL/step1_read_print.json

28 lines
521 B
JSON
Raw Permalink Normal View History

2015-02-12 06:56:47 +03:00
["do",
["load", ["`", "miniMAL-core.json"]],
["load", ["`", "types.json"]],
["load", ["`", "reader.json"]],
["load", ["`", "printer.json"]],
2015-02-12 06:56:47 +03:00
["def", "READ", ["fn", ["strng"],
["read-str", "strng"]]],
["def", "EVAL", ["fn", ["ast", "env"],
"ast"]],
["def", "PRINT", ["fn", ["exp"],
["pr-str", "exp", true]]],
["def", "rep", ["fn", ["strng"],
["try",
["PRINT", ["EVAL", ["READ", "strng"], null]],
["catch", "exc",
["str", ["`", "Error: "], "exc"]]]]],
["repl", ["`", "user> "], "rep"],
null
]