Help for this page

Select Code to Download


  1. or download this
    my $result1 = $Person->name('Homer');
    my $result2 = $result1->job('safety inspector');
    my $result3 = $result2->wife('Marge');
    $result3->fav_food('Duff');
    
  2. or download this
    sub name {
        my ($self, $value) = @_;
        
    ...
    
        return $self->{name}; # else return the name
    }