Next:
iterator
Up:
Loops
Previous:
for
Contents
Index
while
while(1) { i++; if( i < 10) { continue; } else if( i == 10) { break; } }