practice/lisp/hello-world/hello-world.lisp

6 lines
79 B
Common Lisp
Raw Permalink Normal View History

2017-06-23 02:16:42 -07:00
(defun hello-world ()
(format t "hello, world"))
;Run function
(hello-world)