82
ILLEGAL FUNCTION CALL
A parameter that is out of range is passed to a math or string function. This error may
also occur as the result of:
1. a negative or unreasonably large subscript
2. a negative or zero argument with LOG
3. a negative argument to SQR
4. a negative mantissa with a non-integer exponent
5. an improper argument to MID$, LEFT$, RIGHT$.
MISSING OPERAND
The operand of at least one command is missing.
NEXT WITHOUT FOR
A variable in a NEXT statement does not correspond to a previously executed unmatched
FOR statement variable.
OUT OF DATA
A READ statement is executed when there are no DATA statements with unread data
remaining in the program.
OUT OF MEMORY
A program is too large, had too many FOR loops or GOSUB, too many variables, or
expressions that are too complicated.
OUT OF STRING SPACE
String variables have caused BASIC to exceed the amount of free memory remaining.
OVERFLOW
The result of a calculation is too large to be represented in the number format. If underflow
occurs, the result is zero and execution continues without an error.
REDIMENSIONED ARRAY
Two DIM statements are given for the same array, or a DIM statement is given for an array
after the default dimension of 10 has been established for that array.