in reply to Re: When warnings get in the way
in thread When warnings get in the way
Yup, quite agree with that. For instance when grabbing data from a database, some columns may be empty, though initializing the hash before fetching the data would be a real pain. So I often use something like
no warnings; print Dumper(\%bighash); use warnings;
but your
no warnings 'uninitialized';
is a neat trick, maybe I'll try this one next time.
|
---|