FriedEgg wrote:
12
13 data _null_;
14 text='Hello World';
15 array r[11] $ 1 c11 c10 c9 c8 c7 c6 c5 c4 c3 c2 c1;
16 call pokelong(text, addrlong(r[1]));
17 reverse=cat(of c1-c11);
18 put reverse;
19 run;
dlroW olleH
Did you know that an enumerated variable list can be written ascending or descending, as in C11-C1?
... View more