Help for this page

Select Code to Download


  1. or download this
    my @items = (1, 2, 3, 4, 5);
    foreach my $item (@items) {
         print "Got item $item!\n";
    }
    
  2. or download this
    if ($item =~ /^(foo|bar|baz)/) {
         # do several things
    }