Loops/Downward for: Difference between revisions

Content added Content deleted
(Added Tailspin solution)
Line 1,827: Line 1,827:
print(i)
print(i)
}</lang>
}</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}}==
=={{header|Tcl}}==