Functions Documentation
View Function Edit Function
Name multiply
Syntax (multiply x1 [x2 ... xn]) -> z
Argument List x1: One of the integers you want to multiply.
[x2 ... xn]: The next integers you want to multiply.
^1
Returns z: The product of the numbers passed in
Category math, 0.99
Description Calculates the product of the arguments and returns it.
Example
(multiply 56 34 2) -> 3808
Comment Basic math function that like all math functions are used all the time.