diff options
Diffstat (limited to 'chello.lisp')
-rwxr-xr-x | chello.lisp | 7 |
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) |