Hello, I am in a little confusion with Boolens , Here is my code: ConsoleWrite(("Something" = "Samething") & @CRLF) ; False
ConsoleWrite((Not "Something" = "Samething") & @CRLF) ; True
ConsoleWrite((Not False) & @CRLF) ; TrueI have commented the results which I expected, but the expression in the 2nd line is not working as expected , Can anyone explain to me? SciTE Output: Thanks in Advance, TD