http://qs1969.pair.com?node_id=582277

perlknight has asked for the wisdom of the Perl Monks concerning the following question:

All, I have this line:
use strict; use lib "/usr/local/nagios/bin/libexec"; use utils qw(%ERRORS); .... exit ERRORS{"CRITICAL"};
strict will puke if I use ERRORS{"CRITICAL"} since I have not declared it with the my pragma. Is there a better way of using
use utils qw(%ERRORS)
without triggering strict. Thanks.