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