6 lines
87 B
SAS
Raw Normal View History

2015-08-26 17:47:40 -07:00
%macro putit( string= );
%put &string;
%mend;
%putit(string=Hello World)