Skip to content

Instantly share code, notes, and snippets.

@videlais

videlais/for.lua Secret

Created April 13, 2018 03:23
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/1734a67509bda3450aba2e7be881a767 to your computer and use it in GitHub Desktop.
Save videlais/1734a67509bda3450aba2e7be881a767 to your computer and use it in GitHub Desktop.
for.lua
newTable = {1, 2, 3, 4}
for i = 1, #newTable do
print(newTable[i])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment