Possible Duplicate:
call/cc in Lua - Possible?

As far as I know, full continuation (call/cc) can be implemented efficiently with only TCO (tail-call-optimization).

Current Lua 5.1 & VM has TCO, but not continuation. It support only limited coroutine. So it looks possible to implement full continuation on Lua. Am I know wrong about continuation implementation? Or if I'm right, why Lua doesn't support full continuation?

link|improve this question

77% accept rate
feedback

closed as exact duplicate by Shannon Severance, Jeff Atwood Jun 23 '11 at 10:47

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 2 down vote accepted

See here, which includes a good accepted answer, plus an answer from the creator of Lua: call/cc in Lua - Possible?

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.