2017-09-23 10:01:46 +02:00
|
|
|
declare P(3) character (1) initial ('a', 'b', 'c'),
|
2013-04-10 22:43:41 -07:00
|
|
|
Q(3) character (1) initial ('A', 'B', 'C'),
|
|
|
|
|
R(3) fixed decimal (1) initial (1, 2, 3);
|
|
|
|
|
|
|
|
|
|
do i = lbound(P,1) to hbound(P,1);
|
|
|
|
|
put skip edit (P(i), Q(i), R(i)) (2 A, F(1));
|
|
|
|
|
end;
|