The Wikipedia article on Continuation says:
\"In any language which supports closures, it is possible to write programs in continuation passing style an
The key phrase is
It is possible to implement programs in continuation-passing style
(Emphasis mine.) You do this by taking regular "direct-style" programs and converting them to continuation-passing style (CPS) by a program transformation called the CPS transform. The key is that the CPS transform of call/cc is a simple function.
This is not practical for programmers. The CPS transform has two uses:
You don't want to go anywhere near doing CPS transforms on Lua code, especially not by hand.