I am just learning Perl's comparison operators. I tried the below code :-
$foo=291;
$bar=30;
if ($foo < $bar) {
print "$foo is less than $bar (first)\n";
}
if ($foo lt $bar) {
print "$foo is less than $bar (second)\n";
}
The output is 291 is less than 30 (second). Does this mean the lt operator always converts the variables to string and then compare? What is the rationale for Perl making lt operator behave differently from the < operator?
Thanks,

perldoc perltocto see what is available. Then at least skim through most of those docs and make sure to readperldoc perlsyn,perldoc perlvar,perldoc perlfuncandperldoc perlop. Depending on the distribution you use, HTML versions of these docs might already be installed on your computer. Otherwise, typing those phrases into Google will lead you to them. – Sinan Ünür Jul 10 at 15:43