9 lines
152 B
SAS
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;
|