Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Windows pitfall: Subroutine redefined with use Modul

by Brutha (Friar)
on Oct 29, 2003 at 09:54 UTC ( [id://302959]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    package Baseclass;
    use strict;
    ...
        return bless {},$class;
    }
    1;
    
  2. or download this
    package Subclass1;
    
    ...
    }
    print "load Subclass1\n";
    1;
    
  3. or download this
    use strict;
    use warnings;
    ...
    
    my $obj = Subclass1->new;
    1;
    
  4. or download this
    Load Subclass1
    load Baseclass
    Subroutine new redefined at Subclass1.pm line 11.
    Load Subclass1
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (6)
As of 2024-04-19 03:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found