Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    for $i (@a) {
        print $i;
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    for my $i (@a) {
        print $i;
    }