Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
              'd' => 2
            };
    
  2. or download this
    my %h = (
            a =>    {b => 1},
    ...
    my @a = qw(a b c);
    
    print Dumper @h{@a[0, 2]};