At least these still work:
What if someone added a variable type of _Nybble
that is half of a byte??
Code: (Select All)
Dim b As _Unsigned _Bit * 4
b = &B1111
Print b
b = &HF
Print b
Dim s As _Unsigned _Byte
s = &B11111111
Print s
s = &HFF
Print s
What if someone added a variable type of _Nybble
that is half of a byte??