Help for this page

Select Code to Download


  1. or download this
    $$hash{'key1'}{"$var2"} = $value;
    
  2. or download this
    $$hash->{'key1'}->{"$var2"} = $value;
    
  3. or download this
    foreach $key (keys %$hash{'key1'}->%* ){
        print "$key\n";
    }