lua is equal to code example
Example 1: lua not equal
local state = false
if state ~= true then
print("No")
else
print("Yes")
end
Example 2: lua operators
== -- Equal to whatever
<= -- Less than or equal to
>= -- Greater than or equal to
< -- Less than
> -- Greater Than
~= -- Doesnt equal
# -- Length of something