>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
[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"; {
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
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";
}