5 lines
103 B
SAS
5 lines
103 B
SAS
|
|
/* Using a data step. Will print the string in the log window */
|
||
|
|
data _null_;
|
||
|
|
put "Hello world!";
|
||
|
|
run;
|