|
Continue | ||
Continue | ||
Parameters: NONE | ||
Returns: NONE | ||
Continue allows the program flow to jump to the next iteration of a Do/Loop, For/Next, While/EndWhile, or Repeat/Until loop. FACTS: * The compiler will report an error if the Continue statement is used outside of a loop * It's important to note that Continue does not stop a loop. It simply allows you to jump directly to the end of a loop and continue on with it. If you wish to jump completely out of a current loop use the Exit commands. Mini Tutorial:
This example would output.
|
Related Info: | Exit | ExitDo | ExitFor | ExitFunction | ExitRepeat | ExitWhile | loops : |
|
|||||||||||||||||||||||||||||||||||||||
(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com |