Loops/For with a specified step: Difference between revisions

Added PicoLisp
(Added PicoLisp)
Line 286:
Output
<pre>2, 4, 6, 8, who do we appreciate?</pre>
 
=={{header|PicoLisp}}==
<lang PicoLisp>(for (N 1 (> 10 N) (+ N 2))
(printsp N) )</lang>
 
=={{header|Pike}}==
Anonymous user