请注明:姓名-公司-职位
以便审核进群资格,未注明则拒绝
options mprint mlogic symbolgen;
%macro test(idx=);
%if &idx = s1 or &idx = s2 %then %put Hello world!; %else %put The error;%mend;
%test(idx=s1)