Help for this page

Select Code to Download


  1. or download this
    sub thing {
        my ($self) = @_;
        return $self->name;
    }
    
  2. or download this
    sub name {
        return $_[0]->{name};
    }
    
  3. or download this
    sub name {
        return shift->{name};
    }