Not Equal

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
uelandbob
Posts: 72
Joined: Mon Dec 29, 2014 3:28 pm

Not Equal

Post by uelandbob » Thu Jan 15, 2015 12:10 am

This works

Code: Select all

if (3 <> 4) then put "not equal"
and this works

Code: Select all

if (3 is not 4) then put "not equal"
but not this

Code: Select all

if (3 != 4) then put "not equal"
According to User Guide p154 all should work

I must be missing something very simple
uelandbob@gmail.com

FourthWorld
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 10043
Joined: Sat Apr 08, 2006 7:05 am
Contact:

Re: Not Equal

Post by FourthWorld » Thu Jan 15, 2015 12:25 am

I don't believe != has ever been supported in any xTalk, and is not in the Dictionary.

I just filed a bug report against the User Guide to have that removed:
http://quality.runrev.com/show_bug.cgi?id=14387

Thanks for the report.
Richard Gaskin
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn

Post Reply