print "Result: " . (0 == 1); # Result:
print "Result: " . (1 == 1); # Result: 1
Why does perl output an empty string for a false value and not 0
?
print "Result: " . (0 == 1); # Result:
print "Result: " . (1 == 1); # Result: 1
Why does perl output an empty string for a false value and not 0
?