call-with-current-continuation (abbreviated call/cc) captures the "rest of the computation" at a specific point in time as a first-class function. When that captured continuation is invoked with an argument, execution immediately jumps back to where the continuation was created, replacing the enclosing computation with the passed argument.Because continuations reify the control stack into data, ..