- or download this
for my $user ((sort { $users{$b}->{count} <=> $users{$a}->{count} } ke
+ys %users) {
blah blah...
}
- or download this
Global symbol "$user" requires explicit package name at
- or download this
my @sorted_users = sort { $users{$b}->{count} <=>
$users{$a}->{count} } keys %users;
for (@sorted_users) {
blah... blahh
}