mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
14 lines
289 B
Common Lisp
Executable file
14 lines
289 B
Common Lisp
Executable file
#!/bin/sh
|
|
#|-*- mode:lisp -*-|#
|
|
#| <Put a one-line description here>
|
|
exec ros -Q -- $0 "$@"
|
|
|#
|
|
;;; vim: set ft=lisp lisp:
|
|
;; created DATETIME
|
|
(defpackage :ros.script.NAME.DATETIME
|
|
(:use :cl))
|
|
(in-package :ros.script.NAME.DATETIME)
|
|
(defun main (&rest argv)
|
|
(declare (ignorable argv)))
|
|
|