Help for this page

Select Code to Download


  1. or download this
    sub do_each_until_false {
        for (@_) {
    ...
        }
        return 1;
    }
    
  2. or download this
    if (
        do_each_until_false(
    ...
    else {
        print "FAILED\n";
    }
    
  3. or download this
    my $is_success = 0;
    BLOCK: {
    ...
    else {
        print "FAILED\n";
    }