in reply to Uniformly Populating an Array with Elements of Another Array
use strict; my @a = (qw(a b c)); my @b = (qw(x y z)); my @c = ( map { my $t = $_; (map { "$t-$_" } @a) } @b ); [download]
-Paul