Name
Sub -- subtract value from a value
Synopsis
result = Sub(value1, value2)
Function
Subtracts value2 from value1 and returns the result.

Inputs
value1
minuend
value2
subtrahend
Results
result
result of the subtraction
Example
a=1
a=Sub(a,1)
Print(a)
The above code will print "0" to the screen.

Show TOC