Help for this page

Select Code to Download


  1. or download this
    my $arrayElement = $$arrayRef[0];
    my $hashValue = $$hashRef{someKey};
    
  2. or download this
    my $array_element = $array_ref->[0];
    my $hash_value    = $hash_ref->{some_key};
    
  3. or download this
    my $foo = $AoH_ref->[0]->{some_key};
    
  4. or download this
    my $hash_ref = $AoH_ref->[0];
    my $foo      = $hash_ref->{some_key};