in reply to Re^3: Exploiting Perls idea of what is a number
in thread Exploiting Perls idea of what is a number
It does print that, but not because $@ is set. Here's a slight modification:
use strict; use warnings; my $value="abc"; my $t=eval { 0+$value }; print "OMG: $@\n"; __END__ Argument "abc" isn't numeric in addition (+) ... OMG:
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Exploiting Perls idea of what is a number
by rovf (Priest) on Jul 09, 2008 at 06:48 UTC |