RosettaCodeData/Task/Loops-For-with-a-specified-step/ALGOL-W/loops-for-with-a-specified-step.alg
2023-07-01 13:44:08 -04:00

3 lines
55 B
Text

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