Thanks to work by cpfr on #arc, my Git repo and both Anarkies now have support for documentation strings in calls to def. For example: arc> (def add (n1 n2)
"Adds two numbers."
(+ n1 n2))
#<procedure: add>
arc> (help add)
Adds two numbers.
nil
arc>
It only works for def right now, but a little hacking could fix that right up.Using git: $ git clone git://nex-3.com/arc-wiki.git
$ cd arc-wiki
... hack ...
$ git push
Or svn: $ svn co http://ambitioushacker.com/s/arc/
$ cd arc/arc
... hack ...
$ svn ci --username public --password archer
|