The whole job
To save the SURVEY1 data for later use, I'd put it in a permanent SAS library.
LIBNAME Library '/bios524/classlib'; DATA Library.SURVEY1; INPUT SUBJ GENDER :$1. HEIGHT WEIGHT YEAR; DATALINES; 1 M 68 155 91 7 F 72 205 90 9 M 66 120 93 ;
So the SAS log tells me that the libref was assigned:
NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V8 Physical Name: C:\bios524\classlib
And that a permanent data set has been saved.
NOTE: The data set LIBRARY.SURVEY1 has 3 observations and 5 variables.