Identifier

An identifier is a sequence of any letters and numbers, starting with a letter, which is not a keyword or an operator. Identifiers are used to define program variables, constants, types, procedures, functions, the program itself, and so on. When creating identifiers, follow the rules:

In the BNF language the identifier looks as follows:

$ ident = letter {letter | digit | "_"}.

See also:

Fore Dictionary