The following shows the format of a typical "Keyword Dictionary" entry:
KEYWORD
Keyword Definition
Syntax Rule Delimiters and Punctuation
(Otherwise do not enter braces, brackets or vertical bars or other delimiters used in defining syntax rules).
Optional and Required Choices{ ON | OFF } means you must choose ON or OFF.
[ ON | OFF ] means you can optionally choose ON or OFF or neither.
For example:
BEEP [frequency, duration] means that BEEP may be entered alone or with both frequency and duration.
ALLOCATE item [,item...] means item can be used one or more times.
DIM string-name$ '['length']' means that the bracket characters are part of the statement to dimension a string.
Italicized text in lowercase, like "length" in the example above, typically denote statement elements (like parameters, arguments, variables) that are usually defined in the syntax Where and Description blocks, as well as in Definitions.
Keywords are shown in UPPERCASE and should be entered exactly as shown. Multi-keyword statement Keywords must be separated from one another by spaces. All other symbols should be entered exactly as shown.
Usage examples are shown in a "code" font, such as: DIM A$[50]
|