Help for this page

Select Code to Download


  1. or download this
    my %$h = ('name' => 'value', ...); 
    ... 
    print $h->{'name'};
    
  2. or download this
    my %$h = ('name' => 'value', ...); 
    # was "expanded" to
    my $h = {'name' => 'value', ...};