mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
18 lines
280 B
Common Lisp
18 lines
280 B
Common Lisp
#!/bin/sh
|
|
#|-*- mode:lisp -*-|#
|
|
#|Wait forever
|
|
exec ros -Q -- $0 "$@"
|
|
|#
|
|
|
|
(progn
|
|
)
|
|
|
|
(defpackage :ros.script.wait.3672012352
|
|
(:use :cl))
|
|
(in-package :ros.script.wait.3672012352)
|
|
|
|
(defun main (&rest argv)
|
|
(declare (ignore argv))
|
|
(loop (sleep 1)))
|
|
;;; vim: set ft=lisp lisp:
|