Toshiba STE 58762 Welding System User Manual


 
STE 58762
2-19
2.6 LABELS
With the SCOL language, program branches are specified by labels placed at the beginning of the
branch destination. When labelling a statement as a branch, put a colon at the end of the
identifier.
When directing the program to branch to another location with the GOTO command, do not put a
colon at the end of the identifier.
Program branching may only be carried out within a single program. You cannot branch from one
program to another. Also, you may use the same labels in different programs, but you cannot use
the same label in a single program.
Examples:
LOOP1: MOVE P1
GOTO LOOP1