/***************************************************************************************************************** Purpose: Say Hello to the world Author: Peter Clemmensen Date: 22may2017 This program supports the blog post "Hello World" on SASnrd.com *****************************************************************************************************************/ /* Write Hello World in the log using the DATA step */ data _null_; string = 'Hello World'; put string; run; /* Print Hello World in the Results Viewer using IML */ proc iml; string = 'Hello World!'; print string; quit;