
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.
5 lines
68 B
Common Lisp
5 lines
68 B
Common Lisp
;; Common Lisp
|
|
|
|
(defun hello-world ()
|
|
(format t "Hello World~%"))
|