I get exactly the opposite results under 5.8.8 and 5.8.9, hpux, msys, and windows. One such example:
$ perl -e "print \"true\" if 'informal'== 'formal'"
true
Update: Under strawberry 5.14.2 MSWin32-x86-multi-thread, the results are different:
$ /c/perl/strawberry/perl/bin/perl -e "print \"true\" if 'informal'!=
+'formal'"
true
$ /c/perl/strawberry/perl/bin/perl -e "print \"true\" if 'informal'==
+'formal'"
Update: Ahhhh! Very sneaky :-).
|