Help for this page
print "==" if $a == ($b * $c);
$a = "2.0"; print "eq" if $a eq "2"; # Nope print "==" if $a == 2; # Yup