- or download this
sub new
{
my $class = shift;
return bless($Person::list,shift);
}
- or download this
sub new
{
my $class = shift;
return bless({},$class);
}
- or download this
sub name
{
my $self = shift;
$self->{NAME} = shift;
}
- or download this
my $person = new Person;
$person->name('Me');