Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my @c = 7..9;
    
    pp mapm { $_[0] . $_[1] . $_[2] } \@a, \@b, \@c;
    
  2. or download this
    use strict;
    use warnings;
    ...
    while ( my ( $a, $b, $c ) = $iter->() ) {
        say $a, $b, $c;
    }