- or download this
######### index.pl
#!C:/perl5.8/bin/perl.exe
...
}
1;
- or download this
# The package declaration and the code to
# do the exporting are absent in Login.pm
...
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT = qw(&login &login2);
- or download this
use autouse Edit => qw(&login &login2);
- or download this
use autouse Edit => qw(login login2);