We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbec3e2 commit 17e980fCopy full SHA for 17e980f
src/loops/continue.md
@@ -11,6 +11,10 @@ int x = 5;
11
while (x > 0) {
12
if (x == 4) {
13
x--; // Make sure the loop continues to 3
14
+ // When this line is reached it will skip
15
+ // all the lines after this in the function
16
+ // and immediately go back to the top of the
17
+ // loop
18
continue;
19
}
20
IO.println(x + " is a good number");
0 commit comments