--On Donnerstag, 08. November 2001 19:50 -0500 Jeff 'japhy' Pinyan 
<[EMAIL PROTECTED]> wrote:

> On Nov 9, birgit kellner said:
>
>> for ($i = 0; $i < @inputarray; $i++) {
>
> You use $i here...
>
> And here.  That's bad.
>
> Either use different variables, or explicitly scope them:
>
>   for (my $i = 0; ...; ...) {
>     ...
>     for (my $i = 0; ...; ...) {
>       ...
>     }
>   }
Great! That solved the problem, thanks,

Birgit Kellner


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to