changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / scripts/docs.ros

changeset 9: b9720ba9c4a0
parent: e4f8df713d55
author: ellis <ellis@rwest.io>
date: Mon, 08 May 2023 21:11:03 -0400
permissions: -rwxr-xr-x
description: readme, removed redundant script
1 #!/bin/sh
2 #|-*- mode:lisp -*-|#
3 #|
4 exec ros -Q -- $0 "$@"
5 |#
6 (progn ;;init forms
7  (ros:ensure-asdf)
8  #+quicklisp(ql:quickload '() :silent t))
9 
10 (defun main (&rest argv)
11  (declare (ignorable argv))
12  (write-line "> cargo doc")
13  (uiop:run-program "cargo doc")
14  (write-line " generated rust documentation"))