all tests passing yay
[jackhill/mal.git] / jq / step0_repl.jq
CommitLineData
387caf0b
A
1
2def read_line:
3 . as $in
4 | label $top
5 | input;
6
7def READ:
8 .;
9
10def EVAL:
11 .;
12
13def PRINT:
14 .;
15
16def rep:
4fdc0a03 17 READ | EVAL | PRINT;
387caf0b
A
18
19def repl_:
4fdc0a03
A
20 ("user> " | stderr) |
21 (read_line | rep);
387caf0b
A
22
23def repl:
24 while(true; repl_);
25
26repl