in reply to if and
Yields the following:#!/usr/bin/perl -w use strict; my $foo1 = "kev"; my $bar1 = "kev"; my $foo2 = "spencer"; my $bar2 = "spencer"; if ($foo1 eq $bar1 && $foo2 eq $bar2) { print "yep, works fine for me\n"; }
%foo.pl yep, works fine for me %
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: if and
by rob_au (Abbot) on Feb 20, 2002 at 06:12 UTC | |
by blakem (Monsignor) on Feb 20, 2002 at 08:17 UTC | |
by vek (Prior) on Feb 20, 2002 at 16:23 UTC |