sas macro

This commit is contained in:
David
2015-08-26 17:47:40 -07:00
parent ef7fc4b456
commit 501c3cde74

5
s/sas.sas Normal file
View File

@@ -0,0 +1,5 @@
%macro putit( string= );
%put &string;
%mend;
%putit(string=Hello World!)