Loops/Continue: Difference between revisions

Content added Content deleted
imported>Brie
(Add Nu)
m (→‎{{header|Wren}}: Changed to Wren S/H)
Line 2,687: Line 2,687:
=={{header|Wren}}==
=={{header|Wren}}==
From v0.4.0 Wren has a ''continue'' keyword which works in the expected fashion.
From v0.4.0 Wren has a ''continue'' keyword which works in the expected fashion.
<syntaxhighlight lang="ecmascript">for (i in 1..10) {
<syntaxhighlight lang="wren">for (i in 1..10) {
System.write(i)
System.write(i)
if (i%5 == 0) {
if (i%5 == 0) {