Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    foreach my $i (@a) {
        print "$i\n";
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    foreach my $i (@{$href->{list}}) {
        print "$i\n";
    }