Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    
    ...
    
    print Dumper(\%hash), "\n";
    
  2. or download this
    $VAR1 = {
              'a' => {
    ...
                     }
            };
    
  3. or download this
    for ( @ary_of_hrefs ) {
        $hash{ delete $_->{id_1} }{ delete $_->{id_2} } = $_;
    }