Help for this page

Select Code to Download


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