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?