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

10 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;