in reply to Re: Cannot skip first lines in array
in thread Cannot skip first lines in array
That doesn't skip the first 10 elements, it just calls an empty loop 10 times for each element.foreach (@rebasefile){ next for (0..9); # of course, this has overhead of its own next if(/^\s*$/); ... }
Dave.
|
---|