The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
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;