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

package AutoLoad;
use strict;
require Exporter;
our @ISA = qw/Exporter/;
our @EXPORT = qw/func1/;
sub func1 {
return 1;
}
sub func2 {
return 1;
}
1;