02-14-2024, 07:47 AM
Is there an error in this code or am I doing something wrong?
it should display F, FF, FFF, and FFFF!?
Code: (Select All)
Dim b As _Unsigned _Bit * 64
b = &B1111
Print Hex$(b)
b = &B11111111
Print Hex$(b)
b = &B111111111111
Print Hex$(b)
b = &B1111111111111111
Print Hex$(b)