Hello I'm developing a solution in MII 14.0 SP5.
I would like to know if it's a normal behavior?
I just spent some time trying to determine why the following expression is false
(0==0 and 0==0) = false
However I've already solved the problem in the following way
((0==0) and (0==0)) = true
The funny thing is that the following expression works well
(0==0 and 1==1) = true