The Data Set Used for Examples

If you choose to experiment, you can create several simple data sets in a library. Here is a sample SAS program that creates the data set GRADES:
data grades;
  input student $ test1 test2 final;
  datalines;
Fred 66 80 70
Wilma 97 91 98
;
proc print data=grades;
run;
Here is the output:
    The SAS System      10:59 Friday, April 25, 2008

 Obs    student    test1    test2    final
 1      Fred        66       80       70
 2      Wilma       97       91       98