[ autoit ]
$bBool = -1 If $bBool = True Then ConsoleWrite("True " & $bBool) ElseIf $bBool = False Then ConsoleWrite("False " & $bBool) Else ConsoleWrite("Else " & $bBool) EndIf
OK, for the last fifteen years I have known that booleans are either 0 or 1. So why am I getting "True -1" as the output of this script?