(+ arguments) -> integer
(- arguments) -> integer
(* arguments) -> integer
(/ arguments) -> integer
The behavior of these depends on the number of arguments used.
When given one argument, (-) and (/) will return the appropriate inverse. (+) and (*) simply return the argument.
Examples:
When given two arguments, all of these perform as expected.
Examples:
When given more than two arguments, all of these act recursively.
Examples:
See Also: quotient, remainder, Mathematical Comparisons