Help for this page

Select Code to Download


  1. or download this
    $ cat HoH.pl 
    use strict;
    ...
    our $HoH;
    require 'hash';
    print Dumper($HoH);
    
  2. or download this
    use strict;
    use Data::Dumper;
    use vars qw/ $HoH /;
    require 'hash';
    print Dumper($HoH);