10 lines
125 B
Text
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;
|