in reply to Re: Data::Table - empty values - avoid warnings
in thread Data::Table - empty values - avoid warnings
Wrong warning category.
>perl -wle"no warnings 'uninitialized'; print '' + 4" Argument "" isn't numeric in addition (+) at -e line 1. 4 >perl -wle"no warnings 'numeric'; print '' + 4" 4
When in doubt use diagnostics or consult perldiag.
>perl -Mdiagnostics -wle"print '' + 4" Argument "" isn't numeric in addition (+) at -e line 1 (#1) (W numeric) The indicated string was fed as an argument to an oper +ator that expected a numeric value instead. If you're fortunate the me +ssage will identify which operator was so unfortunate. 4
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Data::Table - empty values - avoid warnings
by GertMT (Hermit) on Oct 24, 2007 at 19:26 UTC |