菜单

let 定义宏变量

data;
%let city=nanjing; /*宏变量的值为字符串*/
%let x=123; /*宏变量的值为数字*/
%let y=%eval(123+123); /*宏变量的值为数学表达式*/
run;
%put &city;