Help for this page

Select Code to Download


  1. or download this
    my %hash = ( a => 1, b => 2 );
    print $hash{'b'};  # prints 2
    
  2. or download this
    my $hashref = { c => 3, d => 4 };
    print $hashref->{c};  # prints 3
    
  3. or download this
    my $ref_to_hash = \%hash;
    print $ref_to_hash->{'a'};  # prints 1