A IMP B
(NOT A) OR B
The two statements above are basically perfect replacements for each other. So what you're saying with "Pink" IMP "Girl" is basically:
IF (NOT "Pink") OR "Girl" THEN
Now, since those are bitwise comparisons, can you see why that doesn't work at all?
(NOT A) OR B
The two statements above are basically perfect replacements for each other. So what you're saying with "Pink" IMP "Girl" is basically:
IF (NOT "Pink") OR "Girl" THEN
Now, since those are bitwise comparisons, can you see why that doesn't work at all?