in reply to Working on hash slice
If you want to declare AND populate, the following *DESTRUCTIVE* solution works:
For readability - the key statement is:>perl -MData::Dumper -E "my @players = qw/ barney fred dino/; my @bowl +ing_scores = (195, 205, 30);my %score=map{shift @players,$_} @bowling +_scores;say Dumper \%score" $VAR1 = { 'dino' => 30, 'barney' => 195, 'fred' => 205 };
Update: Here is a NON-Destructive version:my %score=map{shift @players,$_} @bowling_scores;
Key statement:>perl -MData::Dumper -E "my @players = qw/ barney fred dino/; my @bowl +ing_scores = (195, 205, 30);my %score=map{$players[$_],$bowling_score +s[$_]} 0..$#players;say Dumper \%score; say Dumper \@players"
my %score=map{$players[$_],$bowling_scores[$_]} 0..$#players;
As a computer, I find your faith in technology amusing.
|
---|