Skip to content

Instantly share code, notes, and snippets.

@SethDusek
Last active August 29, 2015 14:09
Show Gist options
  • Save SethDusek/0fd2ece7615d25adc6bd to your computer and use it in GitHub Desktop.
Save SethDusek/0fd2ece7615d25adc6bd to your computer and use it in GitHub Desktop.
I moved to gist instead of pastebin because it very nice
c = coroutine.wrap(function()
for i = 1,40 do
print(i)
if getfenv(c).yield==true then
print("HELLOOO") coroutine.yield()
end
print(getfenv().yield)
wait(1)
end end)
c()
wait(5)
getfenv(c).yield=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment