RosettaCodeData/Task/Hello-world-Text/SAS/hello-world-text.sas

5 lines
103 B
SAS
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
/* Using a data step. Will print the string in the log window */
data _null_;
2015-11-18 06:14:39 +00:00
put "Hello world!";
2013-04-10 22:43:41 -07:00
run;