6 lines
79 B
Common Lisp
6 lines
79 B
Common Lisp
(defun hello-world ()
|
|
(format t "hello, world"))
|
|
|
|
;Run function
|
|
(hello-world)
|