From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910111213141516171819202122 package MyDie;use strict;use warnings;sub mydie{ local *I; open I, "<", "ChangeLog"; my $s = <I>; die "Hello";}1;
package
MyDie;
use
strict;
warnings;
sub
mydie
{
local
*I
;
open
I,
"<"
,
"ChangeLog"
my
$s
= <I>;
die
"Hello"
}
1;