mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
9 lines
254 B
Common Lisp
Executable file
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))
|