* List3 Example Investigate the effect of various infile options. Use list-style input statement with the truncover option; options linesize=70 firstobs=3 nodate pageno=1; data test; infile "c:/datasets/employees.txt" truncover; input last $ first $ empid $ jobcode $; proc print; title 'List3 Example. List-style input with truncover.'; run; quit;