Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    $hash{ 'a' }{ $label } = "newvalue";
    print $hash{ 'b' }{ $label },"\n"; # is "newvalue" !!!
    
  2. or download this
    
    use strict;
    ...
    
    $hash{ 'a' }{ $label } = "newvalue";
    print $hash{ 'b' }{ $label },"\n"; # is "value" !!!