Help for this page

Select Code to Download


  1. or download this
    package AAIB::Login;
    # this is a little login routine that I'm using
    ...
    my @EXPORT_OK = qw(authenticate);
    # I've also tried @EXPORT = qw(authenticate);
    # etc ...(returns a hash)
    
  2. or download this
    use strict;
    # use a bunch of other modules
    use AAIB::Login qw(authenticate);
    my %usr = authenticate();