请问可以在宏里面定义宏吗? 如下面这样,测试好像没有错,但不知这样的写法推不推荐:
写法一:
%macro f1;
%put this is f1;
%macro f2;
%put this is f2;
%macro f3;
%put this is f3;
%mend f3;
%f3;
%mend f2;
%f2;
%mend f1;
%f1;
写法二:
%macro f3;
%put this is f3;
%mend f3;
%macro f2;
%put this is f2;
%f3;
%mend f2;
%macro f1;
%put this is f1;
%f2;
%mend f1;
%f1;
请问哪种写法规范些?