Answers for "lua not equal"

Lua
7

lua not equal

local state = false

if state ~= true then
	print("No")
else
	print("Yes")
end
Posted by: Guest on December-04-2020
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
Posted by: Guest on March-19-2020

Browse Popular Code Answers by Language