Loops/Continue: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 21:
end loop;
end Loop_Continue;</lang>
 
=={{header|Aikido}}==
<lang aikido>
foreach i 1..10 {
print (i)
if ((i % 5) == 0) {
println()
continue
}
print (", ")
}
 
</lang>
 
=={{header|ALGOL 68}}==
[[ALGOL 68]] has no continue reserved word, nor does it need one. The continue reserved word is only syntactic sugar for operations that can be achieved without it as in the following example: