The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

package NoEV;
# prevents EV from loading
use lib \&_no_EV;
sub _no_EV {
die "No EV" if $_[1] =~ /EV.pm$/;
return undef;
}
1;