example: Day 3, pgm 1. DATE : Sumi create on 05/03/12. Purpose: Example -Chapter 03. History: Last update on 05/22/12. ********************************************/ Title'SAS common errors'; Proc means data = score; where vteam= 'Indiana State; /* unbalanced quotation marks */ run; Proc print data = score keylabel; /* invalid option */ run; proc contents data = score run; * Missing semicolon; %put &syserr; /* return error codes */ proc means data = score; /* missing RUN statement "PROC PRINT running" message at the top of the window */ /* Cancel the submitted code using break icon */ Proc print; run; /* Print the last used dataset *