Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^3: Understanding module structure and inheritance

by naikonta (Curate)
on Jan 30, 2008 at 18:35 UTC ( [id://665184]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $ cat Common.pm
    package Common;
    ...
    sub show_me {}
    
    1;
    
  2. or download this
    Main::show_here; # since exported by default by Common.pm
    Main::show_me; # originally in Main.pm
    
  3. or download this
    package Main;
    ....
    ...
    ....
    sub show_me {}
    1;
    
  4. or download this
    use Main;
    Main::show_me();
    show_here()
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (1)
As of 2024-04-25 04:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found