lua # operator 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 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