LOOPTO Conditional branch to label using looping |
Top Previous Next |
This script command directions execution back to [ label ] and is used in conjunction with LOOPCOUNT to execute a command or sequence of commands more than one time.
Consider the following example in which the message Wow! is transmitted three times.
LOOPCOUNT 3 :many_tries LINEOUT "Wow!" LOOPTO many_tries
Related Command(s): LOOPCOUNT, LOOPIF, GOTO, IFERROR
|