plsql: add dockerfile. Lots of cleanup/renaming.
[jackhill/mal.git] / miniMAL / step0_repl.json
1 ["do",
2
3 ["load-file", ["`", "miniMAL-core.json"]],
4
5 ["def", "READ", ["fn", ["strng"],
6 "strng"]],
7
8 ["def", "EVAL", ["fn", ["ast", "env"],
9 "ast"]],
10
11 ["def", "PRINT", ["fn", ["exp"],
12 "exp"]],
13
14 ["def", "rep", ["fn", ["strng"],
15 ["PRINT", ["EVAL", ["READ", "strng"], null]]]],
16
17 ["repl", ["`", "user> "], "rep"],
18
19 null
20
21 ]