Help for this page

Select Code to Download


  1. or download this
    my %table = (
        optimal => 'good',
    ...
    );
    
    print $table{failed}{missing};
    
  2. or download this
    my %table = (
        optimal => 'good',
    ...
    );
    
    print (grep {$_ eq 'missing'} @{$table{failed}}) ? 'missing' : 'ok';