What does the ~=
operator mean in Lua?
For example, in the following code:
if x ~= params then
What does the ~=
operator mean in Lua?
For example, in the following code:
if x ~= params then
the ~=
is not equals
It is the equivalent in other languages of !=