Help for this page

Select Code to Download


  1. or download this
    my %shouldexist = map { $_ => undef } @shouldexist;
    
  2. or download this
    delete $shouldexist{ $filename };
    
  3. or download this
    print "Missing:\n";
    foreach (sort keys %shouldexist) {
       print "$_\n";
    }