Why do the following boolean expressions return a different result? The first one returns 1 (true), which is correct.
$hh=23;
$dd=32;
$bool1= ($hh>23) || ($dd>31);
$bool2= ($hh>23) or ($dd>31);
print "bool1=$bool1\n";
print "bool2=$bool2\n";
This is a simplified example. I want initialize the array in one step:
$i++;
$a[$i][0] = "a"
$a[$i][1] = "b";
I thought this would work:
@a[$i][0..1] = ("a","b")
Closer to my real life scenario, I am actually trying to load the array with a split function so that row $i contains 4...
Does anyone have any instructions to install Perl's DBI/DBD package for Oracle 11g on a HPUX-11 system running on a HP Itanium Box?
My Unix administrator has never had a problem doing so for Oracle 10g, but things fail to compile (using an ANSI C compiler) for Oracle 11g. From what I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.