Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: USE or Require?

by Dog and Pony (Priest)
on Jul 23, 2003 at 03:57 UTC ( [id://277017]=note: print w/replies, xml ) Need Help??


in reply to USE or Require?

I just dislike the namespace pollution that calling 'use' entails, such as not knowing exactly what functions it imports.

If the docs aren't enough, check the source. And if that isn't enough either, the call use with parameters, as in:

use CGI qw(:standard);
or for that matter,
use CGI ();
to import nothing. use is done at compiletime, and thus IMO is preferable in most cases. I only use require when I need to do conditional inclusion of something.


You have moved into a dark place.
It is pitch black. You are likely to be eaten by a grue.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (6)
As of 2024-04-19 11:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found