Help for this page

Select Code to Download


  1. or download this
    Person --- Person::Child
           \-- Person::Adult
    
  2. or download this
    sub parents {
      my $self = shift;
      push @{$self->{parents}}, @_ if @_;
      return @{$self->{parents}};
    }