Help for this page

Select Code to Download


  1. or download this
    LABEL1: foreach my $a (@b) {
        if (...) { next LABEL1; }
    ...
        if (...) { next LABEL1; }
        do_something_again();
    }
    
  2. or download this
    LABEL1:
    perform_cleanup();