Constants
Constants are logical, numeric, and string values.
Processing outcomes
Processing outcomes
ok
if it was done correctlynok
if not done correctlynull
if no results returneddata
if logical, numeric or string data returned
Logical constants
Logical constants
Logical constants are used to represent falsity and truth:
false
true
Number 0 (zero) or void string '' are false.
Integer constants
Integer constants
Integer constants are: ..., -2, -1, 0, +1, +2,... (+ can be omitted).
Floating point constants
Floating point constants
Floating point constants are, for example: -3.84, 3.14, +12.5 (2-digit approximation).
String constants
String constants
String constants are sequences of characters delimited by:
'
(single quote)"
(double quote)
or terminated by:
- end line (CR + LF)
,
(Command Separator)]
(compound end command).