Skip to content

Instantly share code, notes, and snippets.

@videlais
Created April 13, 2018 02:57
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 videlais/b9bc5f9fc5d32c31d8158921883ea3f6 to your computer and use it in GitHub Desktop.
Save videlais/b9bc5f9fc5d32c31d8158921883ea3f6 to your computer and use it in GitHub Desktop.
tablefunction.lua
testTable = {}
testTable.newKey = "new value"
function testTable.newFunction()
print("The value is " .. testTable.newKey)
end
testTable:newFunction()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment