factor/contrib/algebra/repl.factor

10 lines
233 B
Factor
Raw Normal View History

2005-02-25 00:06:30 -05:00
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 ;