Help for this page

Select Code to Download


  1. or download this
    my @keys = qw{ a b c d };
    my %hash = map { $_++ } @keys;
    
  2. or download this
    Odd number of elements in hash assignemnt.
    
  3. or download this
    my %hash;
    foreach ( @keys ) {
        $hash{$_}++;
    }