1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 10:37:58 +03:00
mal/miniMAL/step0_repl.json
Joel Martin b32495e94b miniMAL: update to using miniMAL 1.0.2
Also update miniMAL Dockerfile to xenial.
2017-02-10 23:02:30 -06:00

23 lines
319 B
JSON

["do",
["load", ["`", "miniMAL-core.json"]],
["def", "READ", ["fn", ["strng"],
"strng"]],
["def", "EVAL", ["fn", ["ast", "env"],
"ast"]],
["def", "PRINT", ["fn", ["exp"],
"exp"]],
["def", "rep", ["fn", ["strng"],
["PRINT", ["EVAL", ["READ", "strng"], null]]]],
["repl", ["`", "user> "], "rep"],
null
]