roswell.roswell/samples/hello.ros
2015-02-02 15:47:32 +09:00

9 lines
254 B
Common Lisp
Executable file

#!/bin/sh
#|-*- mode: lisp -*-|#
#|Docstring like 1 line comment that are accepted if it installed
exec ros -L sbcl-bin -- $0 "$@"
|#
(defun main (&rest argv)
(format t "Hello World! ~A ~%" (lisp-implementation-version))
(format t "argv=~S~%" argv))