1;;> This is a library which renames an identifier.
2(define-library (scmdoc test simple)
3 (export (rename foo bar))
4
5 (begin
6 ;;> This is my constant.
7 (define foo "foo")))
Automatically generate documentation from comments in R7RS Scheme code
git clone https://git.8pit.net/scmdoc.git
1;;> This is a library which renames an identifier.
2(define-library (scmdoc test simple)
3 (export (rename foo bar))
4
5 (begin
6 ;;> This is my constant.
7 (define foo "foo")))