data _null_;
put "hello world";
run;
将打印hello world
到控制台。
但
data _null_;
put 1;
run;
给我
Encountered " "put" "put "" at line 2, column 1.
Was expecting one of:
<EOF>
";" ...
"*" ...
"data" ...
"proc" ...
(and 41 more)"
data _null_;
put "hello world";
run;
将打印hello world
到控制台。
但
data _null_;
put 1;
run;
给我
Encountered " "put" "put "" at line 2, column 1.
Was expecting one of:
<EOF>
";" ...
"*" ...
"data" ...
"proc" ...
(and 41 more)"