From 97acde18198af1118a5d125309823744234eb390 Mon Sep 17 00:00:00 2001 From: dumrich <40397381+dumrich@users.noreply.github.com> Date: Sat, 15 Oct 2022 06:58:22 -0400 Subject: [PATCH] Simplify Common Lisp (#1361) --- c/Common Lisp.lisp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/c/Common Lisp.lisp b/c/Common Lisp.lisp index 027b536e..32ac17a2 100644 --- a/c/Common Lisp.lisp +++ b/c/Common Lisp.lisp @@ -1,4 +1 @@ -(defun hello-world () - (format t "Hello World~%")) - -(hello-world) +(print "Hello World")