about summary refs log tree commit diff stats
path: root/chello.lisp
diff options
context:
space:
mode:
authorDarren Bane <darren.bane@gmail.com>2023-03-27 22:16:33 +0100
committerDarren Bane <darren.bane@gmail.com>2023-03-27 22:16:33 +0100
commitcb564a2f7b10a4cf2ef2dd5ae823f50947781347 (patch)
treee8203db95d372fd0e9ecc23b25f4afec90295957 /chello.lisp
parentfa161002e603eb29990351c292920ef2b717a071 (diff)
downloadlsp-cb564a2f7b10a4cf2ef2dd5ae823f50947781347.tar.gz
Making changes
Diffstat (limited to 'chello.lisp')
-rwxr-xr-xchello.lisp7
1 files changed, 5 insertions, 2 deletions
diff --git a/chello.lisp b/chello.lisp
index 7722770..858bb78 100755
--- a/chello.lisp
+++ b/chello.lisp
@@ -1,4 +1,7 @@
 #!/usr/local/bin/sbcl --script
 
-(format *standard-output* "~A~%" "Hello world")
-(quit)
+(defun main ()
+  (format *standard-output* "~A~%" "Hello world")
+  (quit))
+
+(main)