The NEG function is used to invert the arithmetic value of an expression.
NEG(expression)
expression may evaluate to any numeric value.
A = 10 B = 12 CRT NEG(A-B)
This code displays the value 2.
jBC