1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/ps/step0_repl.ps

45 lines
602 B
PostScript
Raw Normal View History

% read
/READ {
% just "return" the input string
/str exch def
str
} def
% eval
/EVAL {
% just "return" the "ast"
/env exch def
/ast exch def
ast
} def
% print
/PRINT {
% just "return" the expression
/exp exch def
exp
} def
% repl
2014-03-30 02:26:07 +04:00
/REP { READ (stub env) EVAL PRINT } def
/stdin (%stdin) (r) file def
{ % loop
(user> ) print flush
stdin 99 string readline
not { exit } if % exit if EOF
%(\ngot line: ) print dup print (\n) print flush
REP print (\n) print
} bind loop
(\n) print % final newline before exit for cleanliness
quit