%let x = 15;
%macro test;
%let x = 10;
%put x inside macro test = &x;
%mend test;
%test;
%put x outside the macro test =&x;
%put x inside the macro test =&x;
Run Code Online (Sandbox Code Playgroud)
我需要知道宏定义之外的测试值是多少?