Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    
    ...
        # use hash value as an array ref
        push @{$hash{$hex}}, $int;
    }
    
  2. or download this
    for (keys %hash) {
        print "$_ = ", join(", ", sort @{$hash{$_}}), "\n";
    }