in reply to modules using things from other modules
For example...
use Foo; #%INC now contains ( 'Foo.pm' => '/absolute/path/to/Foo.pm' ) use Foo; #perl "sees" that Foo has been loaded from that entry in %INC and proc +eeds directly to import()
Also, see use for more details about how it works, specifically it's relationship to require
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: modules using things from other modules
by Anonymous Monk on Sep 01, 2008 at 22:37 UTC | |
by ikegami (Patriarch) on Sep 01, 2008 at 22:57 UTC |