Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Location of 'use' statements

by djantzen (Priest)
on Apr 18, 2003 at 18:55 UTC ( [id://251507]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    package Foobar;
    
    ...
    use Quux;
    use strict;
    use warnings;
    
  2. or download this
    package Foobar;
    
    ...
    use warnings;
    use Data::Dumper;
    use base 'Quux';
    
  3. or download this
    package Foobar;
    
    ...
    use strict;
    use warnings;
    use Data::Dumper;
    
  4. or download this
    use strict;
    use warnings;
    ...
    use constant STR => 'quack';
    use Data::Dumper;
    use base 'Quux';
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://251507]
Approved by Paladin
Front-paged by ehdonhon
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: (5)
As of 2024-04-19 03:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found