PROC SORT sorts the data using the default translation table, which sorts all lowercase words first, then all uppercase words. PROC PRINT prints the sorted data set.
proc sort; by values; run; proc print noobs; title 'Default Sort Sequence'; run;