I would like to know a programming languages that natively support delimited continuations. I do know that Scala used to have shift
and reset
, but those were removed; and I also know that Seaside seems to have something similar, but Seaside is a library, and as far as I understand, Smalltalk doesn't have support for delimited continuations.
So, is there a programming language that supports such continuations?
Thank you!
As @user633183 points out, Racket has an extremely rich set of continuation operators. It includes shift and reset along with many other equivalent sets of continuation operation.
See the docs, at
https://docs.racket-lang.org/reference/cont.html?q=racket%2Fcontrol#%28mod-path._racket%2Fcontrol%29