Help for this page
use strict; my @items=qw(A B C a b c); ... foreach my $item (@items){ print "$item\n"; }
A a ... b C c