RosettaCodeData/Task/Loops-For-with-a-specified-step/ALGOL-W/loops-for-with-a-specified-step.alg
2015-11-18 06:14:39 +00:00

3 lines
55 B
Text

begin
for i := 3 step 2 until 9 do write( i )
end.