David Muir Sharnoff <muir@idiom.com> writes:
>* For whatever definition of "working". ;-)
>
>* Huh? What exactly do you mean by "it does work"?
>
>Sorry, my mistake. I had thos tests in among many other
>and mistook which test number it was.
>
>I guess I'll file this in the wish-it-weren't-so bucket.
FWIW being able to protect $@ is handy for things like %SIG handlers
and Tk callbacks.
One doesn't want user's eval / $@ pairs to break if out-of-line
code happens.
eval { ... }
# SIGNAL happens here
if ($@)
{
}