6 lines
70 B
SAS
6 lines
70 B
SAS
|
|
data _null_;
|
||
|
|
a="Hello, World!";
|
||
|
|
b=length(c);
|
||
|
|
put _all_;
|
||
|
|
run;
|