While Loop
(→Description) |
m (1 revision) |
||
(3 intermediate revisions by one user not shown) | |||
Line 26: | Line 26: | ||
If the expression is true the following statements are executed. This loop continues until the expression is false. | If the expression is true the following statements are executed. This loop continues until the expression is false. | ||
+ | |||
+ | You can omit the expression to cause an INFINITE loop however make sure to have a break somewhere... | ||
=== Remarks === | === Remarks === | ||
Line 53: | Line 55: | ||
my $i = 0; | my $i = 0; | ||
println("Value $i {\$i++!}") while($i < 10); | println("Value $i {\$i++!}") while($i < 10); | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | A while loop can run forever and ever (until a BREAK is called) by omitting the expression | ||
+ | |||
+ | <syntaxhighlight lang="sputnik"> | ||
+ | $i = 0; | ||
+ | While ( ) | ||
+ | { | ||
+ | println( "Value is: " . $i ); | ||
+ | $i++; | ||
+ | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Core Function]] | [[Category:Core Function]] |
Latest revision as of 12:38, 14 June 2015
Contents |
While
Description
Loop based on an expression.
While ( <expression> ) { statements ... }
While ( ) { statements ... }
Parameters
expression
If the expression is true the following statements are executed. This loop continues until the expression is false.
You can omit the expression to cause an INFINITE loop however make sure to have a break somewhere...
Remarks
While statements may be nested.
The expression is tested before the loop is executed so the loop will be executed zero or more times.
To create an infinite loop, you can use a non-zero number as the expression such as "While (True)"
The expression can contain the boolean operators of &&, ||, ! as well as the logical operators <, <=, >, >=, ==, !=, <>, eq, eqi, neq and neqi as needed grouped with parentheses as needed.
Example
$i = 0; While ( $i < 20 ) { println( "Value is: " . $i ); $i++; }
Reverse While
my $i = 0; println("Value $i {\$i++!}") while($i < 10);
A while loop can run forever and ever (until a BREAK is called) by omitting the expression
$i = 0; While ( ) { println( "Value is: " . $i ); $i++; }