The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

package SigDie;
use strict;
our $DIE;
$SIG{__DIE__} = sub { $DIE = $@ };
1;