Help for this page

Select Code to Download


  1. or download this
    $h{foo}{bar} = 123;
    
  2. or download this
    $h{foo}->{bar} = 123;
    
  3. or download this
    ${ $h{foo} }{bar} = 123;
    
  4. or download this
    my %a;
    my %b;
    $a{foo} = \%b;
    $a{foo}{bar} = 123;
    print("$b{bar}\n");