lua and statement code example
Example 1: lua operators
== -- Equal to whatever
<= -- Less than or equal to
>= -- Greater than or equal to
< -- Less than
> -- Greater Than
~= -- Doesnt equal
# -- Length of something
Example 2: lua logical and
if 1 == 1 and 2 == 2 then
print("cool!")
end