RosettaCodeData/Task/Loops-For-with-a-specified-step/DWScript/loops-for-with-a-specified-step.dw

5 lines
59 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
var i : Integer;
for i := 2 to 8 step 2 do
PrintLn(i);