Loops/For with a specified step: Difference between revisions

(→‎{{header|Tcl}}: ++ smalltalk)
(→‎{{header|Forth}}: ++ fortran)
Line 31:
." who do we appreciate?" cr ;
</lang>
 
=={{header|Fortran}}==
{{works with|Fortran|90 and later}}
<lang fortran> do i = 1,10,2
print *, i
end do</lang>
 
=={{header|Haskell}}==