Issue with Creator's IF logic
Hi,
I found the following code produces unexpected results:
if(-1.0 < 0.0000000)
{
info "True";
}
else
{
info "False";
}
if(-1.0 < 0.000000)
{
info "True";
}
else
{
info "False";
}
The output returned
is:
False
True
However, the expected
output should be True for both conditions.
Obviously, I would not enter 0.00000000 manually, but this value is returned by a Deluge calculation.
Has anyone else seen such behaviour?