Whole document tree
Lexical and syntactic conventions
As NamesA name is any sequence of letters, digits, and the character _ (underscore), where the first character is not a digit. If a name has a macro definition, it will be subject to macro expansion (see section How to invoke macros). Examples of legal names are: `foo', `_tmp', and `name01'. Quoted stringsA quoted string is a sequence of characters surrounded by the quotes ` and ', where the number of start and end quotes within the string balances. The value of a string token is the text, with one level of quotes stripped off. Thus `' is the empty string, and ``quoted'' is the string `quoted'
The quote characters can be changed at any time, using the builtin macro
Other tokensAny character, that is neither a part of a name, nor of a quoted string, is a token by itself. Comments
Comments in Comments cannot be nested, so the first newline after a `#' ends the comment. The commenting effect of the begin comment character can be inhibited by quoting it.
The comment delimiters can be changed to any string at any time, using
the builtin macro Go to the first, previous, next, last section, table of contents. |