小编ved*_*ll_的帖子

SAS宏中此代码的逻辑是什么?

%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)

我需要知道宏定义之外的测试值是多少?

sas sas-macro

0
推荐指数
1
解决办法
84
查看次数

标签 统计

sas ×1

sas-macro ×1