I am not sure what category should this question fall under but this is what I plan to do.
$cond1 = 1;
$cont2 = 0;
$oper1="&&"; # for AND
$oper2="||"; # for OR
if ($cond1 $oper1 $cond2) {
print "one \n";
} else {
print "two \n";
}
The statement above would generates errors. Can somebody tell me how
to do it in proper way. Thanks
Azmi
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
