A 16-bit number between -32768 and 32767.
A TRUE or FALSE expression. This is the same as a number, but is evaluated differently. If it's value is 0, it is a FALSE expression, otherwise it is a TRUE
expression.
A string of characters
- An immediate string
Display("Hello World")
- A string variable
(string
helloStr = "Hello World"
)
...
Display(helloString)
- A variable (local, global, var, param, property) containing a pointer to a string
(var strPtr)
= strPtr "Hello World"
Display(strPtr)
- A pointer to a variable (local, global, var, param)
(var strBuf[40])
StrCpy(@strBuf "Hello World")
Display(@strBuf)
- A pointer to a text resource (number, number)
Display(999 4)
A pointer to a block of memory. Blocks of memory can contain anything, from classes, to strings, to variables.
An array of four variables defining a rectangle
An array of two variables defining a point
Void means that the function does not return a value.