
* Added a function call and ~& to start a new line before printing "Hello World" * Don't print initial newline Co-authored-by: Richie Bendall <richiebendall@gmail.com>
7 lines
83 B
Common Lisp
Executable File
7 lines
83 B
Common Lisp
Executable File
;; Common Lisp
|
|
|
|
(defun hello-world ()
|
|
(format t "Hello World~%"))
|
|
|
|
(hello-world)
|