about summary refs log tree commit diff stats
path: root/chello.lisp
diff options
context:
space:
mode:
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)