mirror of
https://github.com/kanaka/mal.git
synced 2024-11-11 00:52:44 +03:00
22 lines
331 B
JSON
22 lines
331 B
JSON
["do",
|
|
|
|
["load-file", ["`", "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
|
|
|
|
]
|