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

package NotAutoLoad;
use strict;
require Exporter;
our @ISA = qw/Exporter/;
our @EXPORT = qw/func3/;
sub func3 {
return 1;
}
sub func4 {
return 1;
}
1;