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