Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scheme: API documentation generator?

Javadoc can be used to automatically generate API documentation for Java code, using annotations in the comments above each class, method, etc.

Along those same lines, is there any tool that can generate API documentation from Scheme code?

like image 593
Justin Ethier Avatar asked Mar 08 '26 19:03

Justin Ethier


1 Answers

Here's the eternal answer to any answer about Scheme: yes, there are about fifty such systems.

One pointer among many: Racket's "scribble" system supports literate programming, a more aggressive form of the docstring idea. Here's a link:

http://docs.racket-lang.org/scribble/lp.html

There are many others.

John Clements

like image 94
John Clements Avatar answered Mar 11 '26 08:03

John Clements