GitHub_collection_hello-world/c/common-lisp.lisp
Kevin Layer 36e26ad649 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.
2016-05-20 07:03:19 -07:00

5 lines
68 B
Common Lisp

;; Common Lisp
(defun hello-world ()
(format t "Hello World~%"))