RosettaCodeData/Task/Loops-Foreach/PL-I/loops-foreach.pli

5 lines
93 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
declare A(10) fixed binary;
do i = lbound(A,1) to hbound(A,1);
put skip list (A(i));
end;