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

23 lines
319 B
JSON
Raw Permalink Normal View History

2015-02-12 06:56:47 +03:00
["do",
["load", ["`", "miniMAL-core.json"]],
2015-02-12 06:56:47 +03:00
["def", "READ", ["fn", ["strng"],
"strng"]],
2015-02-12 06:56:47 +03:00
["def", "EVAL", ["fn", ["ast", "env"],
"ast"]],
2015-02-12 06:56:47 +03:00
["def", "PRINT", ["fn", ["exp"],
"exp"]],
2015-02-12 06:56:47 +03:00
["def", "rep", ["fn", ["strng"],
["PRINT", ["EVAL", ["READ", "strng"], null]]]],
2015-02-12 06:56:47 +03:00
["repl", ["`", "user> "], "rep"],
null
]