Skip to content

Instantly share code, notes, and snippets.

@joehakimrahme
Created May 15, 2012 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joehakimrahme/2705487 to your computer and use it in GitHub Desktop.
Save joehakimrahme/2705487 to your computer and use it in GitHub Desktop.
Lua presentation
t1 = { a=1, b="hello" }
print (t1["a"]) -- outputs "1"
t2 = { [1<4] = "foo", [1<10] = "bar" }
print (t2[true]) -- outputs "bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment