What is a continuation and why should I care?
By Paolo Bonzini - Posted on June 20th, 2007
Tagged:
A continuation object contains a snapshot of the program execution including all the local variables, and allows to restore the execution of the program from where the object was created. GNU Smalltalk supports continuations.
You will probably never use continuations directly, but they enable doing very interesting things, such as generators and continuation-based web frameworks.
