Identifiers are used to name Treescript language entities. They begin with a letter or underscore character (_). Subsequent characters consist of these characters, digits, and hyphen characters (-). Identifiers are case-sensitive and cannot be the same as a reserved word.
Identifier Naming Convention
The following is just a programming convention and is not enforced by the Treescript compiler. By convention, all identifiers and keywords are lower case, with the exception of class names, in which the first letter is upper case. Multi-word identifiers are hyphen-separated, e.g. str-to-int