Answers for "lua logical-and operator?"

Lua
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
0

lua logical and

if 1 == 1 and 2 == 2 then
  print("cool!")
end
Posted by: Guest on March-21-2021

Browse Popular Code Answers by Language