in reply to hashes - treating all keys/ values as one
use strict; my @pair; my @values; my $pairs; my $value; # if the $pair and $value you mentioned # are references then dereference it with # the statements here : @pair = @$pairs; @values = @$value ; my @hashofarrays{@pair} = @values; foreach (my ($Key , $Value) = each %hashofarrays){ print "$Key , $Value\n"; }
|
|---|