Node:Identifiers, Next:Comments, Up:Syntax
Identifiers are used to name things in a program.
An identifier consists of one or more of the following:
0 though 9).
.) or underscore (_).
\- means the same as -,
except that the - as thought of as a letter.
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).