RosettaCodeData/Task/Loops-For-with-a-specified-step/PL-I/loops-for-with-a-specified-step.pli
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

6 lines
91 B
Text

declare (n, i) fixed binary;
get list (n);
do i = 1 to n by 4;
put skip list (i);
end;