Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Reloading modules more than once

by abaxaba (Hermit)
on Aug 04, 2002 at 07:14 UTC ( [id://187465]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/perl
    use strict;
    ...
    
    something::todo(arg1,arg2);
    diffrent::todo(arg3,arg4);
    
  2. or download this
    package something;
    @something::ISA=qw(basePack);
    ...
    my $diffrent = new diffrent;
    $something->act($arg1, $arg2);  #something::todo;
    $diffrent->act($arg3,$arg4);    #diffrent::todo;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-18 22:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found