SAS


%*   SAS macro example;

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

%putit(string=Hello World!)

submitted by: Richard Waddell