RosettaCodeData/Task/Hello-world-Text/SAS/hello-world-text.sas
2015-11-18 06:14:39 +00:00

4 lines
103 B
SAS

/* Using a data step. Will print the string in the log window */
data _null_;
put "Hello world!";
run;