Installation guide
110 Programming Commands
GOTO Program Flow Control
ACTION: Branches Unconditionally to the specified label.
PROGRAM SYNTAX: GOTO label
REMARKS: The GOTO statement provides a mean for branching unconditionally to
another label.
It is good programming practice to use subroutines or structured control
statements ( DO ... UNTIL, FOR ... NEXT, IF ... THEN ... ELSE IF
... ELSE) instead of GOTO statements, because a program with many
GOTO statements can be difficult to read and debug. Try to avoid
using GOTO!
EXAMPLES: IF x=1 THEN GOTO COOLANT_OFF
statements
COOLANT_OFF:
statements










