Core Features

Data types

All built-in data types of the langauge

Primitive data types

TypeKeywordSizeRange
08-bit singed integerint88 bits[-128, 127]
16-bit singed integerint1616 bits[32 768, 32 767]
32-bit singed integerint3232 bits[-2 147 483 648, 2 147 483 647]
64-bit singed integerint6464 bits[-9 223 372 036 854 775 808, 9 223 372 036 854 775 807]
128-bit singed integerint128128 bits
08-bit unsinged integeruint88 bits[0, 255]
16-bit unsinged integeruint1616 bits[0, 65 535]
32-bit unsinged integeruint3232 bits[0, 4 294 967 295]
64-bit unsinged integeruint6464 bits[0, 18 446 744 073 709 551 615]
128-bit unsinged integeruint128128 bits
32-bit floating pointfloat1616 bits
32-bit floating pointfloat3232 bits[-3.4e+38, -1.4e-45][1.4e-45, 3.4e+38]
64-bit floating pointfloat6464 bits[-1.8e+308, -4.9e-324][4.9e-324, 1.8e+308]
80-bit floating pointfloat8080 bits
128-bit floating pointfloat128128 bits
UTF-8 characterchar8 bits[U+0000, U+007F]
UTF-16 characterchar1616 bits[U+0000, U+FFFF]
UTF-32 characterchar3232 bits[U+0000, U+10FFFF]
booleanbool8 bits{false, true}
voidvoidvoidvoid

Special built-in data types

TypeKeyword
Stringstring
Regular Expressionregex
more...
Copyright © 2026