From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

package Weed::Perl;
use strict;
#no warnings 'redefined';
our $VERSION = '0.009';
use base 'Exporter';
use constant NO => defined;
use constant YES => not NO;
our @EXPORT = qw.YES NO.;
$, = " ";
$\ = "\n";
sub import {
my $pkg = shift;
strict::import;
warnings::import;
#warnings::unimport('redefine');
Exporter::export_to_level( $pkg, 1 );
}
sub unimport {
strict->unimport;
warnings->unimport;
}
1;
__END__