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