> Therefore, aren't real users going to be least surprised by something > that does... > > $x == $y || $x eq $y I think everyone would be surprised if "orange" ~~ "apple" returns true. perl -e 'my $x = q(orange); my $y = q(apple); print(($x == $y || $x eq $y) ? "Confusing" : "DWIM")'Thread Previous | Thread Next