Skip to content

Instantly share code, notes, and snippets.

@tkaemming
Created December 16, 2015 20:26
Show Gist options
  • Save tkaemming/4a3d3672e8bf7816365e to your computer and use it in GitHub Desktop.
Save tkaemming/4a3d3672e8bf7816365e to your computer and use it in GitHub Desktop.
bad = string.byte(arg[1], 1, 4)
print(bad)
good = {string.byte(arg[1], 1, 4)}
print(good)
print(unpack(good))
ted@estoque % lua assignment.lua "hello world"
104
table: 0x7ff4e3d03900
104 101 108 108
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment