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.
This commit is contained in:
Kevin Layer
2016-05-20 07:03:19 -07:00
parent 9f63e88962
commit 36e26ad649

4
c/common-lisp.lisp Normal file
View File

@@ -0,0 +1,4 @@
;; Common Lisp
(defun hello-world ()
(format t "Hello World~%"))