in reply to Re: OOP method usage
in thread OOP method usage
sub new { my $class = shift; my $self = { _txt => shift }; bless $self, $class; $self->_sub1(); return $self; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: OOP method usage
by Athanasius (Archbishop) on Jul 07, 2012 at 09:56 UTC |