PROC DATASETS copies two data sets out of the WORK library into the PRINTLIB library to limit the number of data sets available to the example.
proc datasets library=work memtype=data nolist; copy out=printlib; select list exprev; run;