Command:Do

From Lavish Software Wiki
Revision as of 22:30, 25 May 2005 by Eleven (talk | contribs)
Jump to navigation Jump to search

Syntax

Command Difficulty Rating
Do
Usage Beginner
Level of Understanding Intermediate
Computer Savvy Beginner
Logic Intermediate

Do

Description

Used in conjunction with While to create a While loop. The "Do" marks the beginning, whereas "While" marks the end. Because the conditions are only checked by the While statement, you may need to place the loop inside an If.

Examples

Declare Count int 1
Do
{
  Echo ${Count}
  VarCalc Count ${Count}+1
}
While "${Count}<10"

See Also