Help for this page

Select Code to Download


  1. or download this
    my %hash = (
        a => 1,
    ...
    );
    
    my $href = \%hash;
    
  2. or download this
    my $thing = $hash{a};
    
  3. or download this
    my $thing = $href->{a};
    
  4. or download this
    my %hash = %{ $href };