From 36e26ad649ba350ee2609f8f6840810e5a82c655 Mon Sep 17 00:00:00 2001 From: Kevin Layer Date: Fri, 20 May 2016 07:03:19 -0700 Subject: [PATCH] Add Common Lisp example Common Lisp is distinct from plain old `Lisp' in that Lisp doesn't have FORMAT. That was added in Common Lisp, in Guy Steele's book Common Lisp the Language, in 1984. --- c/common-lisp.lisp | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 c/common-lisp.lisp diff --git a/c/common-lisp.lisp b/c/common-lisp.lisp new file mode 100644 index 00000000..d3143806 --- /dev/null +++ b/c/common-lisp.lisp @@ -0,0 +1,4 @@ +;; Common Lisp + +(defun hello-world () + (format t "Hello World~%"))