102
Language Reference
©2000-2008 Tibbo Technology Inc.
C1003
Description:
Unlike string literals, character constants may not be empty.
Example:
x = ``
' error C1003: empty char constant
See Also
C1004
Description:
Character constants may contain two characters at most (in which case, the
constant type will be ‘word’).
Example:
x = `abc`
' error C1004: too many chars in constant
See Also
C1005
Description:
The compiler detected an attempt to specify a numerical constant using an
incorrect format.
Example:
x = &G12
' error C1005: invalid numeric constant: unknown base 'G'
x =
&b102
' error C1005: invalid numeric constant
x =
10a
' error C1005: invalid numeric constant
See Also
60
60
45