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

5 lines
103 B
SAS
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
/* Using a data step. Will print the string in the log window */
data _null_;
put "Hello world!";
run;