| column | is a n number or number variable column index into an array starting at 1 |
| columns | is the number of columns that should be stored in the array |
| condition | is one of the following
< (smaller than)
<= (smaller than or equals)
= (equals)
!= (not equals)
> (greater than)
>= (greater than or equals)
|
| funcname | is a function name (eg AskPlayersAge) |
| nvariable | is a number variable (eg Age) |
| number | is a decimal number (eg 42) |
| operator | is one of the following
+ (add)
- (subtract)
* (multiply)
/ (divide)
% (modulus)
|
| parameter | is a number parameter (eg Age) or word parameter (eg Name$) |
| row | is a n number or number variable row index into an array starting at 1 |
| rows | is the number of rows that should be stored in the array |
| test | is a test made by an IF or ELSEIF statement, either
wvariable$ = wvariable$|words
or
nvariable condition nvariable|number
|
| variable | is a number variable (eg Age) or word variable (eg Name$) |
| words | is a word string in quote marks (eg "hello world") |
| wvariable$ | is a word variable (eg Name$) |