Skip to content

Instantly share code, notes, and snippets.

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