Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^2: Imported subroutines

by GrandFather (Saint)
on Sep 18, 2013 at 03:31 UTC ( [id://1054581]=note: print w/replies, xml ) Need Help??


in reply to Re: Imported subroutines
in thread Imported subroutines

I almost never export anything from modules I write. I almost always:

use Wibble qw();

when I use modules. I means I have to:

Wibble::Wobble();

when I need to call Wobble(), but at least I know where Wobble() lives that way even minutes, or months, after I wrote the code.

Using OO largely avoids the name space pollution problem that these measures seek to avoid without cluttering the code with explicit name space references.

True laziness is hard work

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1054581]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-03-19 05:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found