about summary refs log tree commit diff stats
path: root/chello.lisp
blob: 858bb78b548a0ee57947a161fdb92fccc7b877de (plain) (blame)
1
2
3
4
5
6
7
#!/usr/local/bin/sbcl --script

(defun main ()
  (format *standard-output* "~A~%" "Hello world")
  (quit))

(main)