Help for this page

Select Code to Download


  1. or download this
        $self->{'Big_List'} = [many elements];
    
  2. or download this
    sub GetBigList {
        my $self = shift;
    ...
            # do stuff to element, etc.
        }
    }
    
  3. or download this
    sub SomeOperation {
        my $self = shift;
    ...
            # do stuff to element, etc.
        }
    }