I will start out with "contains". Contains is extremely useful and works perfectly for the positive case:
Code: Select all
if X contains Y then
put "X contains Y"
end ifCode: Select all
if X contains Y is false then
put "X does not contain Y"
end ifCode: Select all
if X does not contain Y then
put "X does not contain Y"
end ifAnother thing is "in" and "of" in "repeat for each" structures. It would be nice if they were interchangeable since it's a common mistake to switch them, since they both make sense in english.
Do you have any Syntax stuff that nags at you when you are working with Livecode? Post it here.
