mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
13 lines
252 B
Common Lisp
13 lines
252 B
Common Lisp
#!/bin/sh
|
|
#|-*- mode:lisp -*-|#
|
|
#|Run repl
|
|
exec ros -Q -- $0 "$@"
|
|
|#
|
|
(progn)
|
|
(defpackage :ros.script.run.3668210999
|
|
(:use :cl))
|
|
(in-package :ros.script.run.3668210999)
|
|
(defun main (&rest argv)
|
|
(declare (ignorable argv)))
|
|
;;; vim: set ft=lisp lisp:
|