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