next up previous contents
Next: User's Manual Up: Introduction Previous: Documentation writing softwares   Contents

Documentation structure

The documentation is structured as follow :

(define (factorial n)
  (if (= n 0)
      1
      (* n (factorial (- n 1)))))


next up previous contents
Next: User's Manual Up: Introduction Previous: Documentation writing softwares   Contents
dominique 2003-06-02