# from Sébastien Aperghis-Tramoni
# on Monday 08 October 2007 15:27:

>Since the beginning, I had though that if I wanted to pass arguments  
>to the modules, I'd write it like this:
>
>     use relative qw(First Second), Third => [qw(with some args)]
>
>because I usually load modules without passing them any arguments.

And don't forget some way to not call import.  The brackets are clunky 
though, particularly with the qw() inside them.

  use relative Third => -import => qw(with some args);

And maybe

  use relative Third => -import => [];

--Eric
-- 
Cult: A small, unpopular religion.
Religion: A large, popular cult.
-- Unknown
---------------------------------------------------
    http://scratchcomputing.com
---------------------------------------------------

Reply via email to