%macro huangshiren(fengjie);
%put &fengjie.,这是为什么呢~~~;
%put ;
%mend;
data xiaoniao;
format yiren $100. ;
do yiren='亲爱的','五花肉','正太哥','强哥','Honey~','傻瓜','蜜糖','果脯','五毛','美狗','郎教授','如花','年轻人 May the force be with you','招行行长:房价上涨是因为老百姓钱太多了','巴菲特看到我国的物价发展水平也会哭~';
call execute('%huangshiren('||yiren||');');
end;
run;