diff --git a/l/lisp.lsp b/l/lisp.lsp index f73945fe..71a68ef1 100644 --- a/l/lisp.lsp +++ b/l/lisp.lsp @@ -1,4 +1,6 @@ ; LISP -(DEFUN HELLO-WORLD () +(DEFUN hello () (PRINT (LIST 'HELLO 'WORLD)) ) + +(hello)