DATA= specifies GROUP as the data set to describe. READ= gives read access to the GROUP data set. OUT= creates the output data set GRPOUT, which appears in The OUT= Data Set .
   contents data=group(read=green) out=grpout;
   title  'The Contents of the GROUP Data Set';
run;