in reply to RE: thoughts on learning perl basics
in thread thoughts on learning perl basics
Do you mean:
-my @sorted = { $tmp{$a} <=> $tmp{$b} or $a cmp $b } keys %tmp; +my @sorted = sort { $tmp{$a} <=> $tmp{$b} or $a cmp $b } keys %tmp;
After Compline,
Zaxo
|
|---|