Fisch has asked for the wisdom of the Perl Monks concerning the following question:
80: my ($lines, @masses, @names, @charges, @resnames, @respt, $symbo +l); 99: for ($lines=$pointers{respt}[0]; $lines<=$pointers{respt}[1]; $l +ines ++) { 100: push @respt, (unpack (("A8" x (length($file[$lines]) / 8)), $f +ile[$lines])); 101: } 104: my ($n, $r) = (0, 0); 105: for $n (0 .. $#masses) { 109: if ($n == ($respt[$r]-1)) { 110: $r++; 111: }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: uninitialized value seems initialized
by Corion (Patriarch) on Aug 04, 2006 at 09:18 UTC | |
by Fisch (Novice) on Aug 04, 2006 at 09:40 UTC |