12-21-2022, 03:20 PM
(12-21-2022, 02:53 PM)Spriggsy Wrote: I'd almost agree with you about the unsigned integer bad limit with -1.
Code: (Select All)Dim As _Unsigned Integer i: i = -1
Print i
Try it with any integer type:
Code: (Select All)
Dim As _Unsigned _Byte b: b = -1
Print b
Dim As _Unsigned Integer i: i = -1
Print i
Dim As _Unsigned Long l: l = -1
Print l
Dim As _Unsigned _Integer64 i64: i64 = -1
Print i64