Help for this page

Select Code to Download


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