| Generated: Friday, January 20, 2006, 16:27:28 | | A SchemeDoc Manual |
SchemeDoc Demo Program
Kurt Nørmark Department of Computer Science, Aalborg University, Denmark.
Source file: /user/normark/.public_html/schemedoc/examples/ex1a
This is some introduction to a Scheme program.
|
1 Section one. |
| This is section one. The two functions in this section are documented by quite a few SchemeDoc tags. |
|
| add |
| Form | (add x y) |
| Description | The function f adds to numbers |
| Precondition | Both a and b are numbers |
| Parameters | x | The first number |
| y | The second number |
| Returns | Return the sum of x and y |
| Postcondition | The result is the sum of x and y |
| Example | (add 1 2) |
| See also | Scheme source file | add |
| Context | SchemeDoc |
| next section | second |
| the other function | subtract |
| Note | Miscelaneous information |
|
| subtract |
| Form | (subtract x y) |
| Description | The function f subtracts to numbers |
| Precondition | Both a and b are numbers |
| Parameters | x | The first number |
| y | The second number |
| Returns | Returns x - y |
| Postcondition | The result is the difference between x and y |
| Example | (subtract 7 5) |
| See also | Scheme source file | subtract |
| Context | SchemeDoc |
| the other function | add |
|
| fac |
| Form | (fac n) |
| Description | Calculate the factorial of n |
| See also | Scheme source file | fac |
|
| sample-function |
| Form | (sample-function) |
| Description | A function that returns a number of factorial numbers. |
| See also | Scheme source file | sample-function |
|