int
Syntax
int(X)
Arguments
X can be data of any types.
Details
Convert X to the data type of INT.
Examples
x=int();
x;
// output
00i
typestr x;
// output
INT
int(`10.9);
// output
10
int(2147483647);
// output
2147483647
int(2147483648);
// output
00i
// the maximum value for an INT is 2^31-1=2147483647