Product
product expression1 expression2
(product expression1 expression2 expression3 ...)
expression1 * expression2
Returns product of expressions at the instruction's input.
Example:
print (product 2 3 4)
print 2 * 3 * 4
Output:
24
24
See also:
*= - multiply by a number
Table of Content