-
Notifications
You must be signed in to change notification settings - Fork 2
Data types
iaminfinityiq edited this page Feb 21, 2026
·
6 revisions
Tix supports multiple data types, including the basic ones:
-
int: Represents an integer value with a range of-2^63up until2^63 - 1(guaranteed at least 64 bits, may vary). This is the equivalence of C++'slong longdata type. -
double: Represents a floating point value with the maximum of approximately1.7976931348623157 * 10^308, and the smallest positive value is approximately4.9 * 10^-324. This is the equivalence of C++'sdoubledata type. -
string: Represents a string -
boolean: Represents a boolean, with2different value:trueandfalse -
null_type: Represents anullvalue -
function: Represents a function (not implemented, base data type for built-in functions) -
builtin_func: Represents a built-in function intix -
module: Represents a module intix