Help for this page

Select Code to Download


  1. or download this
    package FamilyMember; # the parent class of Son, Daughter
    sub new {
    ...
        my ($self, $wish);
        push @{$self->{things_to_ask_for}}, $wish;
    }
    
  2. or download this
    sub new {
        my ($class, $args) = @_;
    ...
        $self->askSantaFor($class->wishList());
        return $self;
    }