1== -- Equal to whatever
2<= -- Less than or equal to
3>= -- Greater than or equal to
4< -- Less than
5> -- Greater Than
6~= -- Doesnt equal
7# -- Length of something
1== equal to
2~= not equal to
3< less than
4> greater than
5<= less than or equal to
6>= greater than or equal to
7
8+ Addition
9- Subtraction
10* Multiplication
11/ Division
12^ Exponentiation
13% Modulus
14- Unary negation