Loops/Continue: Difference between revisions

no edit summary
m (→‎{{header|Phix}}: marked p2js compatible, added output)
No edit summary
Line 2,385:
Message(", ")
}</lang>
 
=={{header|Vlang}}==
<lang vlang>fn main() {
for i in 1..11 {
print(i)
if i%5==0{
println('')
continue
}
print(', ')
}
}</lang>
{{Out}}
<pre>
1, 2, 3, 4, 5
6, 7, 8, 9, 10
</pre>
 
=={{header|Wren}}==
338

edits