The PROC PRINT steps print the data sets that ODS created from PROC REG and PROC GLM. The output from these steps goes to both the HTML and the Listing destinations. Links to the output are added to the contents file.
proc print data=IronParameterEstimates noobs;
title 'PROC PRINT Report of the Data set from PROC REG';
run;

proc print data=IronParameterEstimates1 noobs heading=horizontal;
title 'PROC PRINT Report of the Data set from PROC GLM';
run;