iadd - luxembourg/muxcode-clm GitHub Wiki
IADD()
FUNCTION: iadd(<number1>[,<numberN>]...)
Returns the result of adding its integer arguments together. You may add up to 100 numbers in one iadd() call. Similar to add() except that the addition is done with integer math.
Example: > say iadd(2,4) You say, "6" > say iadd(5,3,7,-4) You say, "11"
Related Topics: add, dec, idiv, imul, inc, isub, mod, mul(), sub().