Code:
co = coroutine.create(function()
         for i = 1, 5 do
            print(i)
            print(coroutine.yield(i))
         end
      end)

print(coroutine.resume(co,1,2))
print(coroutine.resume(co,3,4))
print(coroutine.resume(co,5,6))
print(coroutine.resume(co,7,8))
print(coroutine.resume(co,9,10))
print(coroutine.resume(co,11,12))

print(coroutine.status(co))


Why aren't 1 and 2 (from the first coroutine.resume) being displayed?
Bit of a late reply, but unsolved Lua errors are no fun.

The first time you call coroutine.resume the coroutine hasn't started yet, so there is no yield that it will return to. The extra arguments that you pass to resume (1 and 2) are given to your function as arguments. But as your function doesn't accept any arguments those values are just ignored.
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement