Help for this page

Select Code to Download


  1. or download this
    print pairwise{ no warnings 'once'; "$a $b\n" } @nums, @dat;
    
  2. or download this
    my $ea = each_array( @nums, @dat );
    while( my( $n, $d ) = $ea->() ) {
        print "$n $d\n";
    }