in reply to Re^3: Parent cannot call Child method
in thread Parent cannot call Child method
package MyParent::MyChild; use strict; no strict "refs"; use Carp qw(croak); use parent qw(MyParent); my $VERSION = .01; sub new { my ($class) = @_; my $self = {}; bless $self, $class; return $self; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Parent cannot call Child method
by Eily (Monsignor) on Mar 17, 2016 at 15:02 UTC | |
by TorontoJim (Beadle) on Mar 17, 2016 at 15:21 UTC |