6 lines
87 B
SAS

%macro putit( string= );
%put &string;
%mend;
%putit(string=Hello World)