Help for this page

Select Code to Download


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