107
TIDE and Tibbo BASIC User Manual
©2000-2008 Tibbo Technology Inc.
See Also
C1016
Description:
The exit statement may be used only from within certain statements (for, while,
do-loop, sub, function). This error occurs when the compiler encounters an exit
statement which is used not from within one of these statements.
Example:
for
i =
1
to
10
exit
while
' error C1016: 'Exit' is of scope
next
i
See Also
C1017
Description:
Assignment statements must contain a value on left side of the equal sign (called
an l-value). This can be a variable, an array element or a read-write property, and
may not be a constant.
Example:
1
= x
' error C1017: l-value expected on the left of '='
C1018
Description:
Assignment statements must contain a value on right side of the equal sign (called
an r-value). This error occurs when an expression on the right side of such a
statement does not return a value.
Example:
86
85