add - luxembourg/muxcode-clm GitHub Wiki
ADD()
FUNCTION: add(<number1>[,<numberN>]...)
Returns the result of adding its arguments together. You may add up to 100 numbers in one add() call. <numberN> may be a floating point number, and a floating-point result is returned.
Example: > say add(2,4) You say, "6" > say add(5,3,7,-4) You say, "11"
Related Topics: dec, iadd, idiv, imul, inc, isub, fdiv(), mod(), mul(), sub().