The subtraction operator (-) returns the difference of both operands.
Both operands must be integer or float type.
Expression - Expression
> PRINT 1 - 2
-1
> PRINT 4 - 1.0
3.000000
> PRINT TRUE - FALSE
1