Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use 5.012;
    ...
        say "found $a[0] and $b[0] !!!";
        say Dumper(\@a, \@b);
    }
    
  2. or download this
    use strict;
    use warnings;
    use 5.012;
    ...
    while (my ($first, $second) = $ea->()){
        say "found $first and $second !!!";
    }