#+title: continuation Continuations are a [[file:20200604222651-lisp.org][Lisp]] convention that, more or less, represent the current stack frame of a program. Continuations are used in [[file:20200718223520-scheme.org][Scheme]] in particular, as part of their [[file:20210411214209-compilers.org][compiler]] implementation. In Scheme, continuations are first class, and can be used using the function =call/cc=.