in reply to Re: Entering and exiting subs in style
in thread Entering and exiting subs in style
Don't use exit to abort a subroutine if there's any chance that someone might want to trap whatever error happened. Use die instead, which can be trapped by an eval.So, better to "die" than just "exit." Sounds a bit too final ;^) but I'll defer to this advice.
|
|---|