|
| Previous: 2. A Tour through the T3X Language | TOC | Index | Back | Next: 2.2 Comments |
The T3X compiler expects its input in the form of an ASCII file (a sequence of octets where the least significant seven bits of each octet contain the ASCII code of one character and the high bit is set to zero). The following characters will be treated as white space (The C-style 0x-notation is used to represent hexa-decimal numbers):
White space characters delimit tokens, but will otherwise be ignored by the compiler.
Valid input characters are the upper and lower case alphabetic characters A-Z, a-z, the decimal digits 0-9, and the following special characters:
! " # % & ( ) * + , - . / : ; < = > @ [ \ ] ^ _ | ~
Characters which are not contained in this alphabet may only occur in string literals, character literals, and comments. Otherwise they will cause an error.
| Previous: 2. A Tour through the T3X Language | TOC | Index | Back | Next: 2.2 Comments |