Loops/For with a specified step: Difference between revisions

Content added Content deleted
(Added PicoLisp)
Line 312: Line 312:
$i
$i
}</lang>
}</lang>

=={{header|PureBasic}}==
<lang PureBasic>For i=-15 To 25 Step 5
Debug i
Next i</lang>


=={{header|Python}}==
=={{header|Python}}==