- or download this
use Algorithm::Loops qw( MapCarE );
my @one = qw( A B C D );
my @two = qw( E F G H );
my @tre = qw( W X Y Z );
- or download this
my @mda = MapCarE { [@_] } \( @one, @two, @tre );
- or download this
require Data::Dumper;
print Data::Dumper->new([\@mda],['@mda'])
->Indent(1)->Terse(1)->Dump();
- or download this
[
[
...
'Z'
]
]