14
15
16
17
18
19
20
21
22
23
Out
of
string
space
String variables have caused BASIC to
exceed the amount of free memory
remaining. BASIC allocates string space
dynamically, until it runs out of memory.
String
too
long
An
attempt was made to create a string more
than 255 characters long.
String
formula
too
complex
A string expression
is
too long or too
complex. The expression should
be
broken
into smaller expressions.
Can't
continue
An
attempt was made to continue a program
that:
a.
Has halted due to
an
error.
b.
Has been modified during a break
in
execution.
c.
Does not exist.
Undefined
user
function
A USR function was called before providing a
function definition (DEF statement).
No RESUME
An
error-handling routine was entered without
a matching RESUME statement.
RESUME
without
error
A RESUME statement was encountered prior
to
an
error-handling routine.
Unprintable
error
An
error message
is
not available for the
error that occurred.
Missing
operand
An
expression contains
an
operator with no
operand.
Line
buffer
overflow
An
attempt was made to input a line with too
many characters.
A-71