Help for this page

Select Code to Download


  1. or download this
     $hash{'myhash'}->{ODIR} = %direc;
  2. or download this
     $hash->{'myhash'}{ODIR} = ...
  3. or download this
     
    print scalar %direc;
    
  4. or download this
    $hash->{'myhash'}{ODIR} = \%direc;
    
  5. or download this
    foreach (sort keys %{$hash->{myhash}{ODIR}}){
        print "$_ => $hash->{myhash}{ODIR}{$_}\n";
    }