Help for this page

Select Code to Download


  1. or download this
    $dd{'1'}{'2'}{'3'}="hi";
    
  2. or download this
    my %dd = (
        1 => {
    ...
                }
            }
    );
    
  3. or download this
    my $hash_ref1 = $dd{1};
    print $hash_ref->{2}{3}, "\n";
    # prints h1
    
  4. or download this
    while ( my ( $key, $hash_ref ) = each ( %{ $dd{1} } ) {
        # $key == 2
        # $hash_ref == { 2 => { 3 => 'hi' }  }
    }