1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 21:57:38 +03:00
mal/impls/jq/step0_repl.jq

28 lines
283 B
Plaintext
Raw Permalink Normal View History

include "utils";
2020-01-05 14:02:39 +03:00
def read_line:
. as $in
| label $top
| _readline;
2020-01-05 14:02:39 +03:00
def READ:
.;
def EVAL:
.;
def PRINT:
.;
def rep:
READ | EVAL | PRINT | _display;
2020-01-05 14:02:39 +03:00
def repl_:
("user> " | _print) |
2020-01-05 17:03:09 +03:00
(read_line | rep);
2020-01-05 14:02:39 +03:00
def repl:
while(true; repl_);
repl