DISABLE FDs (REMOVE ME).
[jackhill/mal.git] / process / step0_repl.txt
CommitLineData
f5223195
JM
1--- step0_repl ----------------------------------
2READ(str): return str
3
0f4ca9d1 4EVAL(ast,env): return ast
f5223195
JM
5
6PRINT(exp): return exp
7
8rep(str): return PRINT(EVAL(READ(str),""))
9
10main loop: println(rep(readline("user> ")))
11