Loops/Downward for: Difference between revisions

Added Tailspin solution
(Added Tailspin solution)
Line 1,827:
print(i)
}</lang>
 
=={{header|Tailspin}}==
Not really a for-loop, but it sends a stream of values where each gets treated the same way.
<lang tailspin>
10..0:-1 -> '$;
' -> !OUT::write
</lang>
 
=={{header|Tcl}}==
Anonymous user