Answers for "lua logical and"

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
2

lua operators

== equal to
~= not equal to
< less than
> greater than
<= less than or equal to
>= greater than or equal to

+	Addition
-	Subtraction
*	Multiplication
/	Division
^	Exponentiation
%	Modulus
-	Unary negation
Posted by: Guest on July-20-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