# sort using explicit subroutine name sub byage {    $age{$a} <=> $age{$b};  # presuming numeric } @sortedclass = sort byage @class;