| FN 9: jump if equal Example: FN 9: IF +Q1 EQU +Q3 GOTO LBL “UPCAN25“ If both values are equal, the control jumps to the defined label. |
FN 9: jump if undefined Example: FN 9: IF +Q1 IS UNDEFINED GOTO LBL “UPCAN25“ If the variable is undefined, the control jumps to the defined label. |
FN 9: jump if defined Example: FN 9: IF +Q1 IS DEFINED GOTO LBL “UPCAN25“ If the variable is defined, the control jumps to the defined label. |
| FN 10: jump if not equal Example: FN 10: IF +10 NE –Q5 GOTO LBL 10 If both values are not equal, the control jumps to the defined label. |
| FN 11: jump if greater than Example: FN 11: IF+Q1 GT+10 GOTO LBL QS5 If the first value is greater than the second value, the control jumps to the defined label. |
| FN 12: jump if less than Example: FN 12: IF+Q5 LT+0 GOTO LBL “ANYNAME“ If the first value is less than the second value, the control jumps to the defined label. |