Help for this page
my $container = Container->new(qw(e1 e2 e3)); foreach ($container) { # now $_ is $container, NOT one of the elements in it }
my @container = qw(e1 e2 e3); foreach (@container) { # now $_ iterates over the elements of @container }