diff --git a/eg/repl.hy b/eg/repl.hy new file mode 100644 index 0000000..a91b5a9 --- /dev/null +++ b/eg/repl.hy @@ -0,0 +1,7 @@ +; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp +; Copyright (c) Paul Tagliamonte, in sofar as any of this is at all +; copyrightable. + + +(loop (print (eval (read)))) +; Yes folks, this is where REPL comes from.