RE: Jes new to List

2002-07-25 Thread Mark Anderson
>I couldn't quite follow this program off the book. The parts not quite >clear to me are (the hwole program is given below): I'll go through them block by block, and then you can ask deeper questions about the ones that I don't explain well enough. >$i = 0; I'm guessing that you know that $i i

Re: Jes new to List

2002-07-25 Thread Janek Schleicher
[EMAIL PROTECTED] wrote at Fri, 26 Jul 2002 07:18:00 +0200: > Strolling thru' Learning Perl and already have a few q's in mind: > > I couldn't quite follow this program off the book. The parts not quite clear to me >are (the hwole > program is given below): > > $i = 0; > $correct = "maybe"; {

Re: Jes new to List

2002-07-25 Thread Joe Raube
So what part are you having trouble with Tell us what you don't understand. -Joe --- "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Strolling thru' Learning Perl and already have a few q's in mind: > > I couldn't quite follow this program off the book. The parts not > quite > clear to m

Jes new to List

2002-07-25 Thread [EMAIL PROTECTED]
Strolling thru' Learning Perl and already have a few q's in mind: I couldn't quite follow this program off the book. The parts not quite clear to me are (the hwole program is given below): $i = 0; $correct = "maybe"; { while ($correct eq "maybe") { if ($words[$i] eq $guess){ $correct = "yes"; }