RosettaCodeData/Task/Loops-For-with-a-specified-step/Loglan82/loops-for-with-a-specified-step.loglan82
2026-04-30 12:34:36 -04:00

10 lines
125 B
Text

(* Loops/For with a specified step *)
block
var
i: integer;
begin
for i := 0 step 5 to 30
do
writeln(i)
od;
end;