how to write does not equal in lua code example
Example: lua not equal
local state = false
if state ~= true then
print("No")
else
print("Yes")
end
local state = false
if state ~= true then
print("No")
else
print("Yes")
end