in reply to Re: How to validate %hash = ( 'a' => 'b', ...);
in thread How to validate %hash = ( 'a' => 'b', ...);
My thanks to all those who suggested
use warnings;
and special thanks for the extra
use warnings; $SIG{ __WARN__ } = sub { confess q{Got a warning: @_} };
|
|---|