product |
Syntax |
product(L: LIST): OBJECT product(L: LIST, O: OBJECT): OBJECT |
Description |
Example |
/**/ Use R ::= QQ[x,y]; /**/ product([3, x, y^2]); 3*x*y^2 /**/ product(1..40) = factorial(40); true /**/ product([]); -- gives 1 of type INT 1 /**/ product([], y); y /**/ product([3, x], y); 3*x*y |
See Also |