*Program 3-3 Reading data from a comma-separated variables (csv) file; data demographics; infile 'c:\books\learning\mydata.csv' dsd; input Gender $ Age Height Weight; run; *Program 3-2 Adding PROC PRINT to list the observations in the data set; title "Listing of data set DEMOGRAPHICS"; proc print data=demographics; run;