/* Date: 2019-11-04 Purpose: My_program */ *Set filerefs and librefs; x "cd /share/groupid/username"; filename lsas "."; libname lsas "."; ** use this directory to store any output you want to see or use after the program is done, ** all file in working directory will be deleated once program is done; *Global options; *ods trace off; ods listing ; options linesize = 90 NODATE ; data work.A ; var1 = "Hello World!"; run; proc print data=work.A; run; * If use ods pdf to print output, close it here; *ods pdf close; quit;