From b486a9806fb9c124fb7cbc05884ddef16207b422 Mon Sep 17 00:00:00 2001 From: Bradly Feeley Date: Sat, 26 Jul 2008 13:15:39 -0700 Subject: [PATCH] Added Lisp Hello Word --- l/lisp.lsp | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 l/lisp.lsp diff --git a/l/lisp.lsp b/l/lisp.lsp new file mode 100644 index 00000000..f73945fe --- /dev/null +++ b/l/lisp.lsp @@ -0,0 +1,4 @@ +; LISP +(DEFUN HELLO-WORLD () + (PRINT (LIST 'HELLO 'WORLD)) +)