Loops/For with a specified step: Difference between revisions

Content added Content deleted
(Closer to description.)
m (Added Nimrod code)
Line 626: Line 626:
.WRITE $CHAR(I)," "</lang>
.WRITE $CHAR(I)," "</lang>
Output:<pre>A D G J M P S V Y \ _ b e h k n q t w z</pre>
Output:<pre>A D G J M P S V Y \ _ b e h k n q t w z</pre>

=={{header|Nirod}}==
<lang nirod>for x in countdown(10,0,3): echo(x)</lang>
{{out}}
<pre>10
7
4
1</pre>


=={{header|Nemerle}}==
=={{header|Nemerle}}==