Help for this page

Select Code to Download


  1. or download this
    use Carp;
    sub name {
    ...
      }
      return $self->{name};
    }
    
  2. or download this
    sub set_name { 
        my $self = shift; 
    ...
        if (@_) { warn "Attempt to set value in get" }
        return $self->{name};
    }
    
  3. or download this
    my $val = $obj->set_name(@foo);
    
  4. or download this
    die "No arguments in set_name()" unless @_;