This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add Module::Load to 5.9.x
[perl5.git] / lib / Module / Load / t / to_load / TestModule.pm
1 package TestModule;
2
3 use strict;
4 require Exporter;
5 use vars qw(@EXPORT @EXPORT_OK @ISA);
6
7 @ISA = qw(Exporter);
8 @EXPORT = qw(func2);
9 @EXPORT_OK = qw(func1);
10
11 sub func1 { return "func1"; }
12
13 sub func2 { return "func2"; }
14
15 1;