Running the below code on OpenBD 1.0.1: <cfdump var="#0.01 EQ 0.01#" /> <cfdump var="#0.01 EQ Val(0.01)#" /> <cfdump var="#0.01 EQ 0.1 * 0.1#" /> <cfdump var="#0.01 EQ Val(0.1 * 0.1)#" /> <cfdump var="#0.01 EQ Val(0.1) * Val(0.1)#" /> <cfdump var="#0.01 EQ Val(Val(0.1) * Val(0.1))#" /> <br/> <cfdump var="#2 EQ 2#" /> <cfdump var="#2 EQ Val(2)#" /> <cfdump var="#2 EQ 20 * 0.1#" /> <cfdump var="#2 EQ Val(20 * 0.1)#" /> <cfdump var="#2 EQ Val(20) * Val(0.1)#" /> <cfdump var="#2 EQ Val(Val(20) * Val(0.1))#" />
Results in the following: YES YES NO NO NO NO YES YES YES YES YES YES I would have thought that all the above expressions would return true. Checking CF 8.0.1, it also produces a weird result: YES YES NO YES NO YES YES YES YES YES YES YES For OpenBD, is this the expected result where 0.01 EQ 0.1 * 0.1 is false? Thanks, Andrew --~--~---------~--~----~------------~-------~--~----~ Open BlueDragon Public Mailing List http://groups.google.com/group/openbd?hl=en official site @ http://www.openbluedragon.org/ !! save a network - trim replies before posting !! -~----------~----~----~----~------~----~------~--~---
