a port of the Processing Visualization Language
Name

continue

Examples
for(int i = 0; i  100; i += 10) {

  if (i == 70) {  // If i is 70,

    continue;     // skip to the next iteration,

  }               // therefore not drawing the line

  line(i, 0, i, height);

}
Description When run inside of a for() or while(), it skips the remainder of the block and starts the next iteration.
Syntax
continue
Usage Web & Application
Related for()
while()

This reference is licensed under the CC BY-NC-SA 2.0 license:

Creative Commons License
Fork me on GitHub