RosettaCodeData/Task/String-concatenation/SAS/string-concatenation.sas
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00:00

9 lines
152 B
SAS

data _null_;
a="Hello,";
b="World!";
c=a !! " " !! b;
put c;
*Alternative using the catx function;
c=catx (" ", a, b);
put c;
run;