mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 06:08:41 +01:00
Deploy to GitHub Pages:
This commit is contained in:
@ -271,8 +271,8 @@ will immediately jump to the beginning of the next loop iteration (and check the
|
|||||||
loop conditions).</p>
|
loop conditions).</p>
|
||||||
<pre class="snippet">
|
<pre class="snippet">
|
||||||
for (i in [1, 2, 3, 4]) {
|
for (i in [1, 2, 3, 4]) {
|
||||||
System.print(i) //> 1
|
if (i == 2) continue //> 1
|
||||||
if (i == 2) continue //> 3
|
System.print(i) //> 3
|
||||||
} //> 4
|
} //> 4
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user