Help for this page

Select Code to Download


  1. or download this
    use strict;
    my @items=qw(A B C a b c);
    ...
    foreach my $item (@items){
        print "$item\n";
        }
    
  2. or download this
    A
    a
    ...
    b
    C
    c