Skip to content

Instantly share code, notes, and snippets.

@peccu
Last active August 27, 2015 01:22
Show Gist options
  • Save peccu/b1db8bf3f26d0b7c31d1 to your computer and use it in GitHub Desktop.
Save peccu/b1db8bf3f26d0b7c31d1 to your computer and use it in GitHub Desktop.
launch lem from shell
#!/bin/sh
#|-*- mode:lisp -*-|#
#|
exec ros -Q -- $0 "$@"
|#
(ql:quickload :lem)
(defun main (&rest argv)
(declare (ignorable argv))
(if (car argv)
(lem:lem (car argv))
(lem:lem)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment