Update Common-Lisp (#608)

* 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>
This commit is contained in:
PKshrestha 2020-03-29 12:41:17 -04:00 committed by GitHub
parent ce40ecfa02
commit 693c9bebdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,3 +2,5 @@
(defun hello-world ()
(format t "Hello World~%"))
(hello-world)