On Wed, Jan 27, 2016 at 11:00 AM, Felipe Gasper <fel...@felipegasper.com>
wrote:

> Could it not be:
>
> try my $f = open(...) or die …
>

Don't need a "try" there to make it work. An exception object/failure is
false, so "my $f = open(...) or die" will assign the exception to $f, which
is false, causing the "die" to execute.

-y

Reply via email to