add | (add x y) | The function f adds to numbers |
fac | (fac n) | Calculate the factorial of n |
sample-function | (sample-function) | A function that returns a number of factorial numbers. |
subtract | (subtract x y) | The function f subtracts to numbers |
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 | ||
Examples | (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 | ||
Examples | (subtract 7 5) | ||
See also | Scheme source file | subtract | |
Context | SchemeDoc | ||
the other function | add | ||
2 Section two. | |||
This is the second section, only with a couple of functions. The comment of these functions are not documented with a lot of SchemeDoc tags. | |||
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 | |