## What / Why When reading variables of type `Byte` the values read seems to be random (reading `UByte` vars works ok, though). Sample program that fails: ```basic DIM a as Byte READ a PRINT a DATA 1, 2 ``` Should print 1, but the value print is random.