Types#
Primitive Types#
name |
description |
---|---|
int float |
Numeric types. Despite their names, these are neither integers nor
floating-point numbers, but instead fixed-point numbers ranging
|
|
Long integer type. Values range from |
|
Type will be automatically determined by the parser. Cannot be used
in a ‘group declaration’, ex. |
|
Lack of a type; used to indicate a function returns nothing. |
|
General type; almost all types implicity cast to |
|
Boolean type; available values |
|
Character type. Same boundaries as |
|
Color type, used to represent color values. See: CreateRGB |
‘Constant’ types#
By adding the const
modifier to a type, that type becomes “constant”. Declaring
a Variable with a constant type instead declares a Constant.
Other Types#
For documentation on existing other types, see the internal class / constant documentation.