Re: Array Representation

2003-12-23 Thread John W. Krahn
Ursala Luttrell wrote: > > I need to modify an existing perl script. Within the code the following > appears: > > @unique_array[12..24]= > $first_total,$second_total,$third_total,$fourth_total,undef,$fifth_total,$si > xth_total,undef,1000); > > I don't understand what the function of [12..24] i

Re: Array Representation

2003-12-23 Thread Rob Dixon
Ursala Luttrell wrote: > > I need to modify an existing perl script. Within the code the following > appears: > > @unique_array[12..24]= > $first_total,$second_total,$third_total,$fourth_total,undef,$fifth_total,$si > xth_total,undef,1000); > > I don't understand what the function of [12..24] is.

RE: Array Representation

2003-12-23 Thread Tom Kinzer
PROTECTED] Subject: Array Representation I need to modify an existing perl script. Within the code the following appears: @unique_array[12..24]= $first_total,$second_total,$third_total,$fourth_total,undef,$fifth_total,$si xth_total,undef,1000); I don't understand what the function of [12..2

Array Representation

2003-12-23 Thread Ursala Luttrell
I need to modify an existing perl script. Within the code the following appears: @unique_array[12..24]= $first_total,$second_total,$third_total,$fourth_total,undef,$fifth_total,$si xth_total,undef,1000); I don't understand what the function of [12..24] is. Thanks in advance for an explanation.