Loops/Continue: Difference between revisions

m
(→‎{{header|Wren}}: Updated to v0.4.0)
Line 694:
 
<lang Dyalect>for i in 1..10 {
print(i, terminator =: "")
if i % 5 == 0 {
print()
continue
}
print(", ", terminator =: "")
}</lang>
 
Anonymous user