Skip to content

Instantly share code, notes, and snippets.

@aoxu
Last active December 17, 2015 02:58
Show Gist options
  • Save aoxu/5539323 to your computer and use it in GitHub Desktop.
Save aoxu/5539323 to your computer and use it in GitHub Desktop.
for i = 1, 10 do
doA()
if condition then
continue
end
doB()
end
for i = 1, 10 do
doA()
if not condition then
doB()
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment