EXIT DO: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
(Created page with "The '''EXIT DO''' statement can be used to exit a DO...LOOP from inside of the loop. {{PageSyntax}} :: EXIT DO * Used to exit a DO loop when a condition exists regardless of any loop conditions. ''See also:'' * EXIT FOR, IF...THEN * _CONTINUE {{PageNavigation}}") |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
{{PageSyntax}} | {{PageSyntax}} | ||
: EXIT DO | |||
{{PageDescription}} | |||
* Used to exit a DO loop when a condition exists regardless of any loop conditions. | * Used to exit a DO loop when a condition exists regardless of any loop conditions. | ||
{{PageSeeAlso}} | |||
* [[EXIT FOR]], [[IF...THEN]] | * [[EXIT FOR]], [[IF...THEN]] | ||
* [[_CONTINUE]] | * [[_CONTINUE]] |
Latest revision as of 00:32, 29 January 2023
The EXIT DO statement can be used to exit a DO...LOOP from inside of the loop.
Syntax
- EXIT DO
Description
- Used to exit a DO loop when a condition exists regardless of any loop conditions.
See also