Not Equal
Posted: Thu Jan 15, 2015 12:10 am
This works
and this works
but not this
According to User Guide p154 all should work
I must be missing something very simple
Code: Select all
if (3 <> 4) then put "not equal"
Code: Select all
if (3 is not 4) then put "not equal"
Code: Select all
if (3 != 4) then put "not equal"
I must be missing something very simple