product - part-cw/lambdanative GitHub Wiki

(product lst)

product returns the product of all list elements.

Parameter Description
lst List to operate on

Example

Example 1: Obtain the product of a list from 1 to 10.

> (product '(1 2 3 4 5 6 7 8 9 10))
3628800