| SUM | |
| Syntax | SUM number1 number2 (SUM number1 number2 number3 . . .) |
| Explanation | SUM reports the result of adding its inputs. SUM expects two inputs, but will accept more if it and its inputs are enclosed within parentheses. SUM is equivalent to the infix operator +. |
| Examples | SUM 3 6 Result: 9 SUM 3.2 6.4 Result: 9.6 (SUM 3.2 6.4 1) Result: 10.6 |