Reference for Wiring version 0024+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.
Name |
while() |
Description |
Controls a sequence of repetitions. The while structure executes a series of statements continuously while the expression is true. The expression must be updated during the repetitions or the program will never "break out" of while(). |
Syntax |
while(expression) {
statements
} |
Parameters |
expression |
a valid expression |
statements |
one or more statements |
|
Usage |
Application |
Related |
for()
|
Updated on November 01, 2009 01:20:09pm PST