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

5 lines
67 B
Common Lisp
Raw Permalink Normal View History

2024-05-04 01:23:46 +00:00
(defun hello-world ()
(format t "Hello, world!"))
(hello-world)