in reply to Re^2: Exploiting Perls idea of what is a number
in thread Exploiting Perls idea of what is a number
Under the influence of use warnings FATAL => qw(numeric);
Actually, just writing use warnings; is sufficient. Example:
prints Argument "abc" isn't numeric in addition (+) at U:\develsv\ARTS\playground\eval_test1.pl line 4.use strict; use warnings; my $value="abc"; my $t=eval { 0+$value }; print "$@\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Exploiting Perls idea of what is a number
by kyle (Abbot) on Jul 08, 2008 at 15:00 UTC | |
by rovf (Priest) on Jul 09, 2008 at 06:48 UTC |