Help for this page

Select Code to Download


  1. or download this
    package hash;
    %HoH = (
             'HASH_1' => {
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    use Data::Dumper;
    require 'hash';
    print Dumper($hash::HoH);
    
  3. or download this
    $main::HoH = {
             'HASH_1' => {
                    item_a => "abc",
    
  4. or download this
    #!/usr/bin/perl -w
    use strict;
    use Data::Dumper;
    require 'hash';
    print Dumper($main::HoH);