Help for this page

Select Code to Download


  1. or download this
    ######### index.pl
    #!C:/perl5.8/bin/perl.exe
    ...
    }
    
    1;
    
  2. 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);
    
  3. or download this
    use autouse Edit  => qw(&login &login2);
    
  4. or download this
    use autouse Edit  => qw(login login2);