aboutsummaryrefslogtreecommitdiff
path: root/miniMAL/step0_repl.json
blob: 50f88464316f2c4009072fdd17a472351489c190 (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

]