GOTO
Description
Transfers control from one statement in a script to another
statement that is labeled.
Syntax
1 |
GOTO label |
Parameter |
Description |
---|---|
label |
The label associated with the statement to which you |
Examples
Example 1
This GOTO statement skips over the Taxable=FALSE line:
1 2 3 4 |
Goto NextStep Taxable=FALSE //This statement never executes. NextStep: Rate=Count/Count4 |
Example 2
This GOTO statement transfers control to the statement associated
with the label OK:
1 2 3 4 5 6 7 8 |
GOTO OK . . . OK: . . . |
Document get from Powerbuilder help
Thank you for watching.
Subscribe
Login
0 Comments
Oldest