i have two set of dynamic arrays that have some elements like this:
my @arr1 = qw( e1 e2 );
my @arr2 = qw( n1 n2 );
i want to create pairs such as (e1,n1), (e1,n2), (e2,n1) and (e2,n2) or
my @arr1 = qw( e1 );
my @arr2 = qw( n1 n2 );
to get (e1,n1), (e1,n2)
but i am not sure how to create this and store it in hash for processing.
Can any one help?
([e1,n1], [e1,n2])