Nitpick: the beautiful thing about Smalltalk's continuation support is that it's <i>not</i> provided by the compiler. (As far as I know, Squeak still doesn't ship with continuation support built-in.)<p>Despite this, because stack frames are first class objects in Smalltalk, it's very easy for the user to implement continuations. You just traverse the stack to capture the continuation, and switch stack frames with the continuation's in order to invoke it. The resulting Continuation class is almost improbably literal in its implementation.<p>This is what frameworks like Seaside do.