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

Re: avoiding overwriting variables in an inherited class

by choroba (Cardinal)
on Apr 21, 2012 at 14:55 UTC ( [id://966371]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    package FunnyEmail;
    use strict;
    ...
        my $self = {simple => $simple};
        bless $self, $class;
    }
    
  2. or download this
    our $AUTOLOAD;
    sub AUTOLOAD {
    ...
            die "Cannot run $method\n";
        }
    }
    

Log In?
Username:
Password:

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

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

    No recent polls found