[ create a new paste ] login | about

Link: http://codepad.org/KoldR6WQ    [ raw code | output | fork ]

Lua, pasted on Feb 17:
1
2
3
4
5
6
str = "02"

print(tonumber(str,16));
if(tonumber(str,16) >= 0x0 and tonumber(str,16) <= 0xFF and str ~= nil)then
print("Right area");
end


Output:
1
2
2
Right area


Create a new paste based on this one


Comments: