Print function with sort and customized sorting function in a descending order : sort « Array « Perl
- Perl
- Array
- sort
Print function with sort and customized sorting function in a descending order
print sort {$b cmp $a} ("c", "b", "a");
Related examples in the same category