From 05a9bea3d6b5d01032306afd5cc1dafd5e6e1855 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Tue, 18 Dec 2012 22:39:15 -0500 Subject: [PATCH] add in the hello --- eg/repl.hy | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 eg/repl.hy 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.