/* --------------------------------------------------- */ /* howdy.sas - a hello world program */ /* for trying the application dispatcher. */ /* --------------------------------------------------- */ data _null_; file _webout; t=time(); d=date(); put 'Content-type: text/html'/; put '<H1>Howdy, a SAS program wrote this on:</H1>'; put d date7. ' at: ' t time. ; run;