Help for this page

Select Code to Download


  1. or download this
    foreach my $foo (@bars) {
      {
    ...
      }
      do_more_stuff($foo);
    }
    
  2. or download this
    foreach my $foo (@foos) {
      if ($foo =~ /baz/i) {
    ...
    } continue {
      do_more_stuff($foo);
    }
    
  3. or download this
    foreach my $foo (@foos) {
      do_more_stuff($foo);
    ...
      }
      # stuff
    }
    
  4. or download this
    foreach my $foo (@foos) {
      do_stuff($foo);
    ...
      }
      # stuff
    }
    
  5. or download this
    foreach (1..5) {
      print "Hello\n";
    ...
      goto DONE;
    }
    DONE: