Help for this page

Select Code to Download


  1. or download this
    sub first_name {
        my $self = shift;
        $self->{'first'} = shift;
        return "First Name: $self->{first}\n";
    }
    
  2. or download this
    $test->first_name("bill");