roswell.roswell/t/tree-shaker/aaa.ros
2017-06-03 22:29:15 +09:00

19 lines
391 B
Common Lisp
Executable file

#!/bin/sh
#|-*- mode:lisp -*-|#
#| <Put a one-line description here>
exec ros -Q -- $0 "$@"
|#
(progn ;;init forms
(ros:ensure-asdf)
;;#+quicklisp (ql:quickload '() :silent t)
)
(defpackage :ros.script.aaa.3705213720
(:use :cl))
(in-package :ros.script.aaa.3705213720)
(defun main (&rest argv)
(declare (ignorable argv))
(format t "hello world!~%"))
;;; vim: set ft=lisp lisp: