where <EXP> is an expression <LC> is a logical comparator. The following comparators are allowed: EQ equal NE not equal GT greater GE greater/equal LT less LE less/equal LB<N> is a label, with <N> assuming any value between 0 and 99.EXAMPLES: IF(X9.GE.15)GOTO LB9 IF(X1.LT.X50)GOTO LB12
EXAMPLES OF INVALID USAGE: IF(X2.EQ.13.3)GOTO LB100 (Label number larger than 99.)
NOTES