Help for this page

Select Code to Download


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