- or download this
local $@;
my $book = eval {
Spreadsheet::Read->new($file);
};
- or download this
local $@;
my $book;
...
$book = Spreadsheet::Read->new($file);
1;
};
- or download this
local $@;
my $ok = eval {
doSomethingButDontWantReturnValButCouldDie() or undef;
1;
};
- or download this
local $@;
my $ok = eval {
doSomethingButDontWantReturnValButCouldDie();
1;
} or undef;