| DIFFERENCE (-) | |
| Syntax | DIFFERENCE number1 number2 (DIFFERENCE number1 number2 number3 ...) (- number1 number2 number3 ...) |
| Explanation | DIFFERENCE reports the result of
subtracting its inputs. DIFFERENCE expects two inputs,
but will accept more if it and its inputs are enclosed
within parentheses. DIFFERENCE is equivalent to the
prefix or infix operator -. |
| Examples | 6 - 3 Result: 3 DIFFERENCE 6 3 Result: 3 (DIFFERENCE 6 3 2) Result: 1 |