Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Module 'use' chains

by bbfu (Curate)
on Aug 10, 2006 at 05:24 UTC ( [id://566551]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # test.pl
    use warnings;
    use strict;
    ...
    funcA();
    funcB();
    funcC();
    
  2. or download this
    # Include.pm
    
    use myA;
    ...
    use myC;
    
    1;
    
  3. or download this
    package myA;
    
    use base 'Exporter';
    ...
    }
    
    1;
    
  4. or download this
    package myB;
    
    use base 'Exporter';
    ...
    }
    
    1;
    
  5. or download this
    package myC;
    
    use base 'Exporter';
    ...
    }
    
    1;
    
  6. or download this
    funcA at myA.pm line 7.
    funcB at myB.pm line 7.
    funcC at myC.pm line 7.
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://566551]
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: (2)
As of 2024-04-20 03:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found