in reply to
Combining two lists into a hash
How about a hash slice:
my %result; @result{ @keys } = @values;
[download]
Comment on
Re: Combining two lists into a hash
Download
Code
In Section
Seekers of Perl Wisdom