继续使用主流编程语言

Continuation in a mainstream-ish programming language

我需要一种支持延续的主流语言。 Java 永远不会(中断 finally),Scala has deprecated it, ruby is silently deprecating it as well...

是否有任何其他主流的非 FP-only 语言支持它们并且不打算弃用它?我实际上需要能够在代码中跳回°。

° 这是针对博士论文的,而不是生产应用程序:-)。

Python 看起来是程序化的,支持函数式编程,并在此处实现了延续: http://pypy.readthedocs.org/en/latest/stackless.html#continulets

另请查看 asyncio 郁金香: https://docs.python.org/dev/library/asyncio.html