Deploy to GitHub Pages:

This commit is contained in:
Travis CI
2021-05-04 22:00:58 +00:00
parent 9817424fb3
commit 1aa0aa9f2f

View File

@ -271,8 +271,8 @@ will immediately jump to the beginning of the next loop iteration (and check the
loop conditions).</p>
<pre class="snippet">
for (i in [1, 2, 3, 4]) {
System.print(i) //> 1
if (i == 2) continue //> 3
if (i == 2) continue //> 1
System.print(i) //> 3
} //> 4
</pre>