%init> use strict; # path to modules use lib "usr/local/www/apache/htdocs/TEST"; # modules to use use check; %init>
##
package check;
use strict;
require Exporter;
our @ISA = ('Exporter');
our @EXPORT = ( 'one','two', 'three', 'four', 'five', 'six' );
our $VERSION=1.10;
sub one
{
return 'yes';
}
sub two
{
return 'two';
}
sub three
{
return 'three';
}
sub four
{
return 'four';
}
sub five
{
return 'five';
}
sub six
{
return 'six';
}
1;