Bits-And-Pieces/Common-Lisp-Bits-And-Pieces/Chapter-02/hello-world.lisp

5 lines
67 B
Common Lisp

(defun hello-world ()
(format t "Hello, world!"))
(hello-world)