SPUG: Modules - more than one object in file?

ced at carios2.ca.boeing.com ced at carios2.ca.boeing.com
Wed Oct 11 13:26:38 CDT 2000


> If I save packages A and B in A.pm (and append 1;), and then create test1.pl
>that has this:

># test1.pl
>use A;
>$b = B->new;
>$b->foo;

>Now when I run test1.pl, I get this:
>~/myperl$ perl test1.pl
>Can't locate A.pm in @INC (@INC contains: d:/Perl/lib d:/Perl/site/lib .) at
>tes
>t1.pl line 1.
>BEGIN failed--compilation aborted at test1.pl line 1.
> ~/myperl$

 

use lib "/path/to/module";   # e.g.  use lib "C:/myhome/lib";
use A;
...


hope this helps,
--
Charles DeRykus




 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
     POST TO: spug-list at pm.org       PROBLEMS: owner-spug-list at pm.org
      Subscriptions; Email to majordomo at pm.org:  ACTION  LIST  EMAIL
  Replace ACTION by subscribe or unsubscribe, EMAIL by your Email-address
 For daily traffic, use spug-list for LIST ;  for weekly, spug-list-digest
  Seattle Perl Users Group (SPUG) Home Page: http://www.halcyon.com/spug/





More information about the spug-list mailing list