Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
    my $hashref = $k[0];
    my %tmp = %{$g{$hashref}};
    print $tmp{"foo"}
    
  2. or download this
    use strict;
    
    ...
    push (my @g,\%h);
    my $hashref = $g[0];
    print $hashref->{foo};