Help for this page

Select Code to Download


  1. or download this
    my %failed;
    if (CONDITION) {
        $failed{"name"} ++;
    };
    # more checks ....
    return scalar keys %failed ? \%failed : ();
    
  2. or download this
    my $what_failed = complex_check {
        check { CONDITION; } "name";
        check { CONDITION; } "name";
        # ....
    };