I'm a little surprised (and scared) by the fact that the warnings pragma doesn't complain about 'NaN' and 'nan' being non-numeric.
Why does warnings not emit the customary 'Argument isn't numeric in addition (+) for them?
Test Case
$ perl -Mstrict -wE 'say 0+$_ for qw/string NaN nan fail/;'
Argument "string" isn't numeric in addition (+) at -e line 1.
0
0
0
Argument "fail" isn't numeric in addition (+) at -e line 1.
0
NaNis a valid value of a floating-point number, just like +/- infinity. – biziclop Jul 5 '12 at 13:58