Loops/For with a specified step: Difference between revisions

Forth
(add Tcl)
(Forth)
Line 7:
next i
print "who do we appreciate?"</lang>
 
=={{header|Forth}}==
<lang forth>
: test
9 2 do
i .
2 +loop
." who do we appreciate?" cr ;
</lang>
 
=={{header|Haskell}}==
<lang haskell>import Control.Monad (forM_)
Anonymous user