& mul() Syntax: mul(<number1>,<number2>[,<numberN>]...) Returns the result of multiplying its arguments together. <numberN> may be a floating point number, and a floating point result is returned. Example: > say mul(3,5) You say "15" > say mul(3,5,-2) You say "-30" See Also: add(), div(), fdiv(), mod(), round(), sub(), trunc()