Loops/Continue: Difference between revisions

Content added Content deleted
imported>Maxima enthusiast
imported>Brie
(Add Nu)
Line 1,794: Line 1,794:
40 PRINT ",";
40 PRINT ",";
50 NEXT</syntaxhighlight>
50 NEXT</syntaxhighlight>

=={{header|Nu}}==
<syntaxhighlight lang="nu">
for i in 1..10 {
print -n $i
if $i mod 5 == 0 {
print ""
continue
}
print -n ", "
}
</syntaxhighlight>


=={{header|Objeck}}==
=={{header|Objeck}}==