aboutsummaryrefslogtreecommitdiff
path: root/miniMAL/step0_repl.json
blob: 659993001d2ab1d34603112b90662b5f61c3ad85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
["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

]