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