Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I'm able to get inside the first loop, but can't seem to get inside the two checks using && ( and yes the $freq is FREEmy $data = @size; if ($data >= 1) { print "MADE IT IN HERE\n"; } if (($freq eq 'FREE') && ($data >= 1)) { print "MADE IT INTO THE LOGICAL AND\n"; }
Thanks for the help
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Logical AND
by demerphq (Chancellor) on Nov 26, 2002 at 18:49 UTC | |
by waswas-fng (Curate) on Nov 26, 2002 at 18:57 UTC | |
|
Re: Logical AND
by jkahn (Friar) on Nov 26, 2002 at 18:45 UTC | |
|
Re: Logical AND
by thewalledcity (Friar) on Nov 26, 2002 at 18:46 UTC | |
|
Re: Logical AND
by Anonymous Monk on Nov 27, 2002 at 00:18 UTC |