Help for this page

Select Code to Download


  1. or download this
    my @a = (1, 2, 3, 4);
    my @hashes;
    ...
    for my $num (@a) {
       push @hashes,{}
    }
    
  2. or download this
    $hashes[1]{key} = 'some value';
    print "$hashes[1]{key}\n";