请教SAS advance
题39 of63
%let Mv=shoes;
%macro PORDUCT (Mv=bicycles);
%let Mv=clothes;
%mend;
%PRODUCT (Mv=tents)
%put Mv is &Mv;
what is written to the SAS log?
答案是 Mv is shoes
比较
%let a =cat;
%macro animal;
%let a = dog;
%mend;
%animal
%put a is &a;
what is written to SAS log?
a is dog
这两题有什么区别呢?我看了很久的资料还是不理解。 请高手指教! 谢谢!