Difference between revisions of "Command:Continue"

From Lavish Software Wiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
== Syntax ==
+
#REDIRECT [[Control:While]]
{{CMD-DR|Continue|Beginner|Intermediate|Beginner|Intermediate}}
 
Continue
 
 
 
== Description ==
 
Used within a [[Command:While|While]] loop, skips the remaining portion of the loop and continues at the [[Command:While|While]], where the conditions for looping will be checked.
 
 
 
== Examples ==
 
  Declare Count int 1
 
  Do
 
  {
 
    Echo ${Count}
 
    VarCalc Count ${Count}+1
 
    continue
 
    Echo This line will not be echoed as the continue skips straight to the while
 
  }
 
  While "${Count}<10"
 
 
 
== See Also ==
 
*[[LavishScript:Commands|Commands]]
 
{{Command-Stub}}
 
[[Category:LavishScript]]
 
[[Category:LavishScript Commands]]
 

Latest revision as of 02:37, 13 September 2005

Redirect to: