20 lines
330 B
Common Lisp
Executable file
20 lines
330 B
Common Lisp
Executable file
#!/bin/sh
|
|
#|-*- mode:lisp -*-|#
|
|
#|
|
|
exec ros -Q -- $0 "$@"
|
|
|#
|
|
(progn
|
|
(ros:ensure-asdf)
|
|
#+quicklisp
|
|
(ql:quickload '(cl-mustache)
|
|
:silent t))
|
|
|
|
(defpackage :ros.script.templater
|
|
(:use :cl))
|
|
(in-package :ros.script.templater)
|
|
|
|
|
|
(defun main (&rest argv)
|
|
(declare (ignorable argv)))
|
|
|
|
;;; vim: set ft=lisp lisp:
|