Unsigned integer data type (expected to be equivalent to C99 'uint32_t'). A 32 bit unsigned itger can range from 0 to 0xFFFFFFFF (4,294,967,295).
Usage
Used in the declaration section of code, which is before any statements.
Example
uint aUint; // A stand alone declaration of a uint. uint a, b; // Declaring two uints at the same time. uint c = 64000, d = 10; // Declaring two uints, and initializing them both at the same time.
Remarks
Unlike other languages the uint data type is actually a class.