*************************************************** *********** SAS Program to read and print ******** *********** data files for atmospheric CO2******** *********** concentrations from Alert ******** *************************************************** ; data alert; infile 'alert.co2' missover; input yr month day julian decyr co2 flag $; proc print; run;