Help for this page

Select Code to Download


  1. or download this
    for( @male Z @female )->[$m,$f] {
        # ....
    }
    
  2. or download this
    my @married;
    foreach( 0 .. $#male ) {
    ...
    
    # OR with List::MoreUtils::pairwise
    my @married = pairwise{ "$a $b" } @male, @female;