SUBTRACT Subtracts the second number from the first
MATH
SUBTRACT value1 value2
value1 - numerical value
value2 - numerical value
This method has no refinements
SUBTRACT subtracts the second number from the first. Implemented for most numerical types. Subtract is prefix notation. Meta also can handle the infix operator - for subtraction
SUBTRACT as prefix
result: SUBTRACT 7 3
with result of 4.
SUBTRACT as infix
result: 7 - 3
with also a result of 4