Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print Dumper(\%hash1);
    print "\n";
    print Dumper(\%hash2);
    
  2. or download this
    #!/usr/local/bin/perl
    use Data::Dumper;
    ...
            print "$key => $value\n";
        }
    }
    
  3. or download this