Subject: | warning on undefined variable |
When a variable is not found or not set in a source file, and if this
variable is used in this file, we get a warning from Perl like :
Use of uninitialized value in concatenation (.) or string at
/usr/local/share/perl/5.10.0/Config/General/Interpolated.pm line 87.
because of the "use strict" pragma.
But if we want to manage ourself this kind of situation, it will be
great to have something to disable this warning.
PS. Thanks for this module, which is very very useful to my project ;-)