Help for this page

Select Code to Download


  1. or download this
    sub cleararray {
        my $self = shift;
        @{$self->array()}[$_] = [(0) x $self->radiovar()]
               for 0 .. $self->radiovar() - 1;
    }
    
  2. or download this
    sub cleararray {
        my $self = shift;
        @{$self->array()}[$_] = [(0) x @{$self->array()}]
               for 0 .. @{$self->array()} - 1;
    }