How come `0x30b` is not of type `Byte`? Isn't acce...
# compiler
r
How come
0x30b
is not of type
Byte
? Isn't accepted as such as parameter to a function taking a Byte.
k
Because the
b
doesn't stand for Byte. It's hex for 11.
r
Oops