v0.2.0 Release
- Detect negative numbers as
TokenNumber
- Added array/any/"at least one" operators:
?= Array/Any equal operator (eg. `a?=b`) ?!= Array/Any NOT Equal operator (eg. `a?!=b`) ?> Array/Any Greater than operator (eg. `a?>b`) ?>= Array/Any Greater than or equal operator (eg. `a?>=b`) ?< Array/Any Less than or equal operator (eg. `a?<b`) ?<= Array/Any Less than or equal operator (eg. `a?<=b`) ?~ Array/Any Like/Contains operator (eg. `a?~b`) ?!~ Array/Any NOT Like/Contains operator (eg. `a?!~b`)