﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
691	Not equal <> condition with OR gives wrong result	anonymous		"Not equal <> condition with OR gives wrong result.

Example 1 give wrong result while example 2 gives correct result.

;example 1 (not working properly)
$temp=7
If $temp <> 1 OR $temp <> 7 Then
	MsgBox(0, ""MTM"", ""weekday"")
Else
	MsgBox(0, ""MTM"", ""weekend"")
EndIf

;example 2 (working properly)
$temp=7
If $temp = 1 OR $temp = 7 Then
	MsgBox(0, ""MTM"", ""weekend"")
Else
	MsgBox(0, ""MTM"", ""weekday"")
EndIf"	Bug	closed		AutoIt	3.2.12.1	None	No Bug		
