in reply to eval and return values
I think you probably meant something like...
my $foo = eval { bar->something() }; die $@ if $@; $foo;
Update:
s/with/within/
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: eval and return values
by AnomalousMonk (Archbishop) on Jan 14, 2009 at 20:16 UTC |