Help for this page

Select Code to Download


  1. or download this
      %item = %{$array[0]}; # Creates a copy of the hash
      print $item{key};
    
  2. or download this
      no strict "vars"; # Allow local decs
      local *item = \%{$array[0]}; # Creates a ref. No copy.
      print $item{key};