in reply to Re: Some "combined assignment operators" are exempt from "uninitialized value" warning. Is it documented anywhere?
in thread Some "combined assignment operators" are exempt from "uninitialized value" warning. Is it documented anywhere?
>perl -e "use warnings; my @nums = (); my $prod; $prod *= $_ for @nums +; print $prod" Use of uninitialized value $prod in print at -e line 1.
|
---|