6 lines
87 B
SAS
6 lines
87 B
SAS
%macro putit( string= );
|
|
%put &string;
|
|
%mend;
|
|
|
|
%putit(string=Hello World)
|