Help for this page

Select Code to Download


  1. or download this
    C:\Documents and Settings\my\Desktop>perl test.pl
    0  ==== zero
    ...
    3  ==== four
    4  ==== four
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    foreach (sort keys %hash) {
       print "$_  ==== $hash{$_}\n";
       }