- or download this
sub cleararray {
my $self = shift;
...
}
}
}
- or download this
sub radiovar {
my ( $self, $newval ) = @_;
...
$self->{'array'} = $newval if defined( $newval );
return $self->{'array'};
}
- or download this
package X;
...
...
$radiovar = $newval if defined( $newval );
return $radiovar;
}