mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-10 21:58:48 +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>
|
||||
<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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user