blob: 40706f10391c56d18d2f7300e5b99c1fc2a169fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package AutoLoad;
use strict;
use warnings;
require Exporter;
our @ISA = qw/Exporter/;
our @EXPORT = qw/func1/;
sub func1 {
return 1;
}
sub func2 {
return 1;
}
1;
|