5 lines
71 B
Lua
5 lines
71 B
Lua
a=32
|
|
hex=string.format("%02X",a)
|
|
print(hex)
|
|
b=tonumber(hex,16)
|
|
print(b) |