- or download this
*$datum = sub {
my self = shift;
$self->{$datum} = shift if @_;
return $self->{$datum};
};
- or download this
*$datum = sub {
$self->{$datum} = shift if @_;
return $self->{$datum};
};
- or download this
*$datum = sub {
$datum = shift if @_;
return $datum;
};
- or download this
$datum = sub {
my self = shift;
$self->{$datum} = shift if @_;
return $self->{$datum};
};