Help for this page

Select Code to Download


  1. or download this
    package A;
    use vars qw{$VERSION @ISA @EXPORT @EXPORT_OK};
    require Exporter;
    ...
    }
    
    1;
    
  2. or download this
    #!/usr/bin/perl -Tw
    use lib 'where/a/pm/resides';
    use strict;
    ...
    a;
    
    exit;
    
  3. or download this
    package B;
    use vars qw{$VERSION @ISA @EXPORT @EXPORT_OK};
    require Exporter;
    ...
    }
    
    1;
    
  4. or download this
    #!/usr/bin/perl -Tw
    use lib 'where/a/pm/resides';
    use strict;
    ...
    b;
    
    exit;