in reply to Re^2: Compare and copy array values
in thread Compare and copy array values
No, you don't.
But loop variables should be declared in the loop construct:
or (means the same)foreach my $item (@list) { }
for my $item (@list) { }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Compare and copy array values
by tgolf4fun (Novice) on Mar 19, 2008 at 23:24 UTC |