Scala includes the continuations plugin now (yay), but must be enabled by passing \"-P:continu开发者_运维问答ations:enable\" to the scala compiler.Is there a way to pass arbitrary arguments to scalac
Continuing quest to make sense of ContT and friends. Please consider the (absurd but illustrative) code below:
How might one implement C# yield return using Scala continuations? I\'d like to be able to write Scala Iterators in the same st开发者_开发问答yle. A stab is in the comments on this Scala news post, bu
In the context of Scheme and CPS conversion, I\'m having a little trouble deciding what administrative redexes (lambdas) exactly are:
I have been working alongside The Little Schemer to learn Scheme and using PLT-Scheme for my environment.
Because of an article in IBM Developer Works about CPS (continuation passing style), I\'m trying to not use \"return\".
I am amazed by the \"error\" function in PLTScheme. If I have a division by zero, it doesnt do any other recursion and just comes out of the call stack and give me an error.