Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: use of "use X"

by ikegami (Patriarch)
on Jan 18, 2012 at 06:38 UTC ( [id://948486]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use warnings;
    
  2. or download this
    BEGIN {
       require warnings;
       import warnings;
    }
    
  3. or download this
    BEGIN {
       my $debug = 1;
    ...
          import warnings;
       }
    }
    
  4. or download this
    my $debug;
    BEGIN { $debug = 1; }
    use if $debug, 'warnings';
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-24 01:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found