and | double | inout | or | uint16 |
* Not really a reserved keyword, but is recognized by the compiler as a built-in keyword.
These are the non-alphabetical tokens that are also used in the language syntax.
* | ) | = | ~ | . |
Other than the above tokens there are also numerical, string, identifier, and comment tokens.
123456789 123.123e123 123.123e123f 0x1234FEDC 'abc' "abc" """heredoc""" _Abc123 // /* */
The characters space (32), tab (9), carriage return (13), line feed (10), and the UTF8 byte-order-mark (U+FEFF) are all recognized as whitespace.