Comparisons
You can compare two values with comparison operators.
- < (less than)
- <= (less than or equal to)
- > (greater than)
- >= (greater than or equal to)
- == (equal to)
- ~= (not equal to)
Note that ~ is used for "not equal to" instead of ! like other languages.
The result of these operators will be a boolean.