- or download this
# always use strictures (the following two lines)
use strict;
...
print "Failed to find matching key\n"
}
- or download this
Failed to find matching key
- or download this
use strict;
use warnings;
...
}
print "Failed to find matching key\n" if ! $match;