Help for this page

Select Code to Download


  1. or download this
    my @arr = qw(a b c);
    while ( my ( $i, $e ) = each @arr ){
        say "iter $i = $e";
    }