103
TIDE and Tibbo BASIC User Manual
©2000-2008 Tibbo Technology Inc.
C1006
Description:
This error occurs when Tibbo BASIC syntax is violated. Refer to the documentation
of a particular statement to see its syntax.
Example:
select
x ‘ error C1006:
'Case' expected
case
1
:
case
2
:
b =
true
case
3
:
b =
false
case
else
:
sys.halt
end
select
sub
on_init
...
end
function
‘ error C1006:
'End Sub' expected
See Also
C1007
Description:
A numerical constant does not fit in any supported numerical type.
Example:
x =
65536
' error C1007: Constant too big
x = -
32769
' error C1007: Constant too big
enum
my_
enum
my_val1 = -
32768
,
my_val2 =
32768
end
enum
' error C1007: enum range is too wide
See Also
78
43
60