in reply to Re^2: Learning Perl - Question About Using a For Loop To Pull Data From an Array
in thread Learning Perl - Question About Using a For Loop To Pull Data From an Array
Part of the problem here is a rather poor choice of names for "counter". $name_number or something similar would have been better. There is no "count" function of $counter! It is being used as a 1 based index to the names array. Perl starts arrays at 0, not one, so that is what $counter-1 is all about. Hopefully that makes sense?
|
|---|