{ my $age; sub age { my $self = shift; return $age unless @_; $age = shift; }} #### { my %agedata; sub age { my $self = shift; return $age{$self} unless @_; $age{$self} = shift; }} #### {{ my $variable } sub accessor { .... }}