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

41 lines
566 B
PostScript
Raw Normal View History

% read
/_readline { print flush (%stdin) (r) file 1024 string readline } def
/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
% repl loop
{ %loop
(user> ) _readline
not { exit } if % exit if EOF
REP print (\n) print
} bind loop
(\n) print % final newline before exit for cleanliness
quit