Help for this page

Select Code to Download


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