%macro test1; /*定义SAS宏过程1*/
%global x; /*定义全局宏变量*/
%let x=100;
%put &x;
%mend test1;
%test1; /*调用SAS宏过程1*/
%macro test2; /*定义SAS宏过程2*/
%put &x;
%mend test2;
%test2; /*调用SAS宏过程2*/
%macro test1; /*定义SAS宏过程1*/
%global x; /*定义全局宏变量*/
%let x=100;
%put &x;
%mend test1;
%test1; /*调用SAS宏过程1*/
%macro test2; /*定义SAS宏过程2*/
%put &x;
%mend test2;
%test2; /*调用SAS宏过程2*/