GOOC - Game Oriented Object C

GOOC - Game Oriented Object C

Next: Keywords, Up: Lexer Tokens
[Contents]

5.1. Identifiers

5.1. Identifiers

Identifiers are sequences of characters used for naming variables, subroutines, and expression macros. Identifiers may include letters, decimal digits, and the underscore '_' character. The first character cannot be a digit.

Identifiers are case-sensitive, meaning foo and FOO are distinct identifiers. _F00 is a valid identifier, while 123FOO is not.