- or download this
#file UTest.pm
package UTest;
...
}
# other sub ...
1;
- or download this
#file Service.pm
package Service;
...
}
#others sub...
1;
- or download this
#file test.pl
use Lib::Service;
my $service = Service->new;
#... other codes
- or download this
Can't locate UTest.pm in @INC (@INC contains: /etc/perl /usr/local/lib
+/perl/5.14.2 /usr/local/share/perl/5.14.2 /usr/lib/perl5 /usr/share/p
+erl5 /usr/lib/perl/5.14 /usr/share/perl/5.14 /usr/local/lib/site_perl
+ .) at Lib/Service.pm line 2.
BEGIN failed--compilation aborted at Lib/Service.pm line 2.
Compilation failed in require at ./mytest.pl line 2.
BEGIN failed--compilation aborted at ./mytest.pl line 2.