Help for this page

Select Code to Download


  1. or download this
    sub action {
      for my $i(@list) {
    ...
        print "Decide sub didn't call next!\n";
      }
    }
    
  2. or download this
    sub foo { next I; };
    I: foreach my $a ( 1..5 ) {
    ...
      &foo(); 
      print "$a\n";
    }