while and until Modifiers
expression while boolean-expression
expression until boolean-expression
If expression is anything other than a begin/end block, executes expression zero or
more times while boolean-expression is true (for while) or false (for until).
If expression is a begin/end block, the block will always be executed at least one time.
No comments :
Post a Comment