Loops/Continue: Difference between revisions

m
→‎{{header|REXX}}: indented DO loop. -- ~~~~
m (→‎{{header|REXX}}: indented DO loop. -- ~~~~)
Line 939:
=={{header|REXX}}==
(Remember that there exists implementations of the REXX language that needs that the source begins with <tt>/*</tt>, i.e. with a comment)
<lang rexx> do i = 1 to 10
call charout ,i", "
if i//5 = =0 then do
say
iterate
end
end</lang>
 
=={{header|Ruby}}==