Help for this page

Select Code to Download


  1. or download this
    use Module LIST;
    
  2. or download this
    require Module;
    Module->import LIST if Module->can('import');
    
  3. or download this
    test1.pl:2     use strict;
    test1.pl:4     use lib qq{/usr/web/wonko/test/lib/SYS};
    ...
                      if SYS_mail->can('import');
    
       ERROR!!
    
  4. or download this
    use vars qw(@ISA @EXPORT_OK);
    use Exporter();
    @ISA = qw(Exporter);
    @EXPORT_OK = qw( send_notice );
    
  5. or download this
    /usr/web/wonko/test/AB/AB_prod.pm
    #--------------------------------------------------------------------
    ...
    }
    1;
    #--------------------------------------------------------------------
    
  6. or download this
    /usr/web/wonko/test/lib/SYS/SYS_mail.pm
    #--------------------------------------------------------------------
    ...
    }
    1;
    #--------------------------------------------------------------------
    
  7. or download this
    use strict;
    use warnings;
    ...
    ======
    Hello from AB_prod::send_notice
    Hello from SYS_mail::send_mail