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 |
||
Line 9: | Line 9: | ||
''See also:'' | ''See also:'' | ||
* [[EXIT FOR]], [[IF...THEN]] | * [[EXIT FOR]], [[IF...THEN]] | ||
* [[_CONTINUE]] | * [[_CONTINUE]] |
Revision as of 01:35, 23 January 2023
The EXIT DO statement can be used to exit a DO...LOOP from inside of the loop.
Syntax
- EXIT DO
- Used to exit a DO loop when a condition exists regardless of any loop conditions.
See also: