func prod(lst : list of Number) -> Number return reduce(`*', lst)
prod([2 3]) = 2 * 3 = 6 prod([2]) = 2 prod([]) = 0