I have tested some extremes, and found out that the Windows 7's 64-bit system is in fact a true 62-bit system....
The following program shows why.
Code: Select all
For i=1 To 64
Debug "2 ^ "+Str(i)+" = "+Str(Pow(2,i))
Next
Even the PureBasic manual states clearly that 64-bit-Integers and Quads have a range from -9223372036854775808 to +9223372036854775807.