7 lines
79 B
SAS
7 lines
79 B
SAS
data _null_;
|
|
length a b $11;
|
|
a="I am Legend";
|
|
b=reverse(a);
|
|
put a;
|
|
put b;
|
|
run;
|