in reply to Re^5: Question on "Effective Perl Programming" (intervene)
in thread Question on "Effective Perl Programming"
Of course, then you lose the return value of stuff if you cared about it, though you could save it in another variable if you want to go through the trouble.my $worked = eval { stuff; 1; };
|
|---|