菜单

%global 定义全局宏变量

%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*/

发表评论

邮箱地址不会被公开。 必填项已用*标注