Help for this page

Select Code to Download


  1. or download this
    @fruits = qw/ MANGO APPLE GRAPES MANGO MANGO MANGO MANGO
                  APPLES APPLES BANANA CORN APPLES /;
    
    ...
    foreach (sort {$count{$a} <=> $count{$b}} keys %count) {
      print "$_ => $count{$_}\n";
    }
    
  2. or download this
    foreach (sort {lc($a) cmp lc($b)} keys %count) {
      print "$_ => $count{$_}\n";
    }