RosettaCodeData/Task/String-length/SAS/string-length.sas

6 lines
70 B
SAS
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
data _null_;
a="Hello, World!";
b=length(c);
put _all_;
run;