From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910111213141516171819 package NotAutoLoad;use strict;use warnings;require Exporter;our @ISA = qw/Exporter/;our @EXPORT = qw/func3/;sub func3 { return 1;}sub func4 { return 1;}1;
package
NotAutoLoad;
use
strict;
warnings;
require
Exporter;
our
@ISA
=
qw/Exporter/
;
@EXPORT
qw/func3/
sub
func3 {
return
1;
}
func4 {