RosettaCodeData/Task/String-length/SAS/string-length.sas
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

5 lines
70 B
SAS

data _null_;
a="Hello, World!";
b=length(c);
put _all_;
run;