Used as an example in Help:Lua debugging#To see the value of a variable without changing the code
function str2hex(str) return str:gsub("...", function(byte) return string.char( tonumber(byte,16)) end ) end send(str2hex("aa ff 33 44 55 66"))