Help for this page

Select Code to Download


  1. 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 );
    
  2. or download this
    my @mda = MapCarE { [@_] } \( @one, @two, @tre );
    
  3. or download this
    require Data::Dumper;
    print Data::Dumper->new([\@mda],['@mda'])
        ->Indent(1)->Terse(1)->Dump();
    
  4. or download this
    [
      [
    ...
        'Z'
      ]
    ]