- or download this
{ my $age; sub age {
my $self = shift;
return $age unless @_;
$age = shift;
}}
- or download this
{ my %agedata; sub age {
my $self = shift;
return $age{$self} unless @_;
$age{$self} = shift;
}}
- or download this
{{ my $variable } sub accessor {
....
}}