Help for this page

Select Code to Download


  1. or download this
    my $count = 1;
    my @array = ('A','B','C');
    ...
      $hash{$i} = $count;      
      $count++;
    }
    
  2. or download this
    for my $key ( sort {$hash{$a} <=> $hash{$b} } keys %hash )
    {
         print " MIRACLE_HAPPENS is equal to $hash{$key}.<br>\n";
    }