in reply to Re: read-only error
in thread read-only error
# Grabs each district from all_store array foreach my $dist_only (@all_store_info) { my @array = split(/ / , $dist_only); #line 269 my $test = @array; next if $test < 2; $distlist = "$array[1] $array[2] $array[3]"; push(@dist_list, $distlist); #print "$distlist\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: read-only error
by imp (Priest) on Aug 24, 2006 at 19:05 UTC | |
|
Re^3: read-only error
by grep (Monsignor) on Aug 24, 2006 at 18:47 UTC |