in reply to in Perl 0 != 0 ... and this is good
print qq|"one" == 0| if "one" == 0; # prints: "one" == 0 print qq|"one" != 0| if "one" ; # prints: "one" != 0 [download]