Dear Ruud et. al.,

I've found a bug in 4.61 that incorrectly determines zero to be equal to a non-empty string. Please see the code below.

 Code:
Break On
If 0 = "a"
	? "This is wrong."
EndIf

If Not "a" = 0
	? "This is correct."
EndIf


The simple work around is to put 0 on the right hand side of the equality check.

Regards,

Richard