in reply to Re^4: Numification of strings
in thread Numification of strings

More like "doesn't hurt".
++$count{$_} for @list;
would have to be written
$count{$_} = $count{$_}//0 + 1 for @list;
if warnings had an effect.