4 lines
93 B
Text
4 lines
93 B
Text
declare A(10) fixed binary;
|
|
do i = lbound(A,1) to hbound(A,1);
|
|
put skip list (A(i));
|
|
end;
|