Node:Identifiers, Next:, Up:Syntax



Identifiers

Identifiers are used to name things in a program.

An identifier consists of one or more of the following:

An identifier cannot start with a digit, nor can the second character be a digit if the first character is a period. This is because such words are parsed as numbers.

Note that the identifiers . and .. are reserved (they are used to access the filesystem).