Help for this page

Select Code to Download


  1. or download this
    my %hash_of_hashes= ( one => { two => 'three four five' } );
    
  2. or download this
    use strict;
    use warnings;
    ...
    my %hash_of_hashes= ( one => { two => 'three four five' } );
    
    print Dumper \%hash_of_hashes;