Loops/For with a specified step: Difference between revisions

→‎Insitux: inclusion
(→‎Insitux: inclusion)
Line 1,545:
In cases where the by is used it might seem more natural to be right associative.
If in doubt parenthesize.
 
=={{Header|Insitux}}==
 
<syntaxhighlight lang="insitux">
(for i (range 0 10 2)
(print i)
(continue))
 
;or
(loop 5 i
(print (* i 2)))
</syntaxhighlight>
 
=={{header|Io}}==
112

edits