in reply to use Module (LIST) and 'import'
You don't understand the order in which things are executed I think. The use OtherModule part happens before $config is modified by import. Remember that use Blah qw(foo) is shorthand for BEGIN { require Blah; import Blah qw(foo); }. The use Othermodule happens when you require Blah which is before import has had a chance to run.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: use Module (LIST) and 'import'
by eXile (Priest) on Nov 30, 2004 at 22:04 UTC | |
by Stevie-O (Friar) on Dec 01, 2004 at 00:32 UTC |