Help for this page

Select Code to Download


  1. or download this
    my %a;
    $a{key1}{a}{key2}{b}{key3}{c}{key4}{d}=1;
    ...
    {
     whateveryouwant with your elements of %a;
    }
    
  2. or download this
    foreach my $key1 (keys %{$a{key1}...})
    {
    ...
      ...
     }
    }
    
  3. or download this
    %a={a => {b => c}, b => 3};
    open FILE, "myhash.txt";
    print FILE Dumper (%a);
    cloes FILE