in reply to Re: Our Across Multiple Files?
in thread Our Across Multiple Files?
That doesn't work. I tried a few variations, but that one seemed the most correct based on the docs.test.pl --- require Exporter; @ISA = qw(Exporter); @EXPORT_OK = qw($bar); use Blah qw($bar); $bar = 4; Blah::test(); Blah.pm ----- package Blah; sub test {print $bar}; 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Our Across Multiple Files?
by davorg (Chancellor) on Dec 17, 2001 at 21:05 UTC |