Loops/Downward for: Difference between revisions

Line 517:
<lang tuscript>
$$ MODE TUSCRIPT
LOOP n=10,10,-1
PRINT n
ENDLOOP
Line 533:
2
1
0
</pre>
 
=={{header|UnixPipes}}==
<lang bash>yes \ |cat -n |head -n 10 | tac</lang>
Anonymous user