Data types

This is a wiki page. Be bold and improve it!

If you have any questions about the content on this page, don't hesitate to open a new ticket and we'll do our best to assist you.

Integer length

int can have a different length according to the OS or compiler. 1

Operations with mixed types

int32 i = INT_MAX-1;
int64 j = i * i;

The result will not give a 64 bit integer, as the conversion to 64bit will happen after the * operation. 2