RosettaCodeData/Task/Loops-For-with-a-specified-step/Modula-3/loops-for-with-a-specified-step.mod3

4 lines
59 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
FOR i := 1 TO 100 BY 2 DO
IO.Put(Fmt.Int(i) & " ");
END;