factor/contrib/algebra/repl.factor

10 lines
233 B
Factor

IN: algebra USING: prettyprint stdio kernel parser ;
: algebra-repl ( -- )
"ok " write flush
read-line dup "exit" = [
terpri "bye" print
] [
parse infix f swap eval-infix call . algebra-repl
] ifte ;