Loops/For with a specified step: Difference between revisions

Content added Content deleted
Line 585: Line 585:
<lang tuscript>
<lang tuscript>
$$ MODE TUSCRIPT
$$ MODE TUSCRIPT
LOOP/CLEAR n=2,9,2
LOOP i=2,9,2
PRINT n
PRINT i
ENDLOOP
ENDLOOP
</lang>
</lang>
Line 596: Line 596:
8
8
</pre>
</pre>

=={{header|UNIX Shell}}==
=={{header|UNIX Shell}}==
{{works with|Bourne Again SHell|3}}
{{works with|Bourne Again SHell|3}}