Loops/For with a specified step: Difference between revisions

Content added Content deleted
(+Icon+Unicon)
(adding MUMPS example)
Line 284: Line 284:
IO.Put(Fmt.Int(i) & " ");
IO.Put(Fmt.Int(i) & " ");
END;</lang>
END;</lang>
=={{header|MUMPS}}==
<lang MUMPS>FOR I=65:3:122 DO
.WRITE $CHAR(I)," "</lang>
Output:<pre>A D G J M P S V Y \ _ b e h k n q t w z</pre>


=={{header|OCaml}}==
=={{header|OCaml}}==