NAME
	int - integers numbers

SYNTAX EXAMPLE
	9797 /* decimal number */
	0x20 /* hexadecimal number */
	020  /* octal number */

DESCRIPTION
	This type stores an integer, normally it is 32 bits and use 4 bytes
	of storage when used in a global variable.

	A list of operators that applies to ints follows:

	In this list a and b is used to represent an integer expression:

	a + b  : summation
	a - b  : subtraction
	a * b  : multiplication
	a / b  : integer division
	a % b  : modulo ( same thing as  a - ( a / b ) * b )
	a | b  : bitwise or
	a & b  : bitwise and
	a ^ b  : bitwise xor
	! a    : boolean not, returns 1 if a is zero 0 otherwise
	~ a    : bitwise complement
	- a    : negation
	a == b : return 1 if a is equal to b, 0 otherwise
	a != b : return 0 if a is equal to b, 1 otherwise
	a < b  : returns 1 if a is lesser than b, 0 otherwise
	a <= b : returns 1 if a is lesser or equal to b, 0 otherwise
	a > b  : returns 1 if a is greater than b, 0 otherwise
	a >= b : returns 1 if a is greater or equal to b, 0 otherwise

SEE ALSO
	float	
