Help for this page

Select Code to Download


  1. or download this
    my %hash;
    my @array = qw( ABC DEF GHI );
    $hash{$_}++ for (@array); # $_ is the loop variable.
    
  2. or download this
    my %hash;
    my @array = qw( ABC DEF GHI );
    for my $key (@array) {
      $hash{$key}++
    }