Actors / Coroutines Nemerle & Mono Continuations

I found this article: http://www.mono-project.com/Continuations So I have a few questions. Are there any erlang-style or (at least) scala style implementations for Nemerle based on this structure? If not, can you give an example of using this API, please.

Also is this continuation structure compatible with the native Microsoft.NET CLR?

Thank you for your help.

+4
source share
1 answer

I have not seen the Nemerle actors library. However, the ComputationExpressions library is more powerful than the sequel. It adds support for the Nemerle monad, allowing you to implement continuations, coroutines, and many other functions. You can find implementation examples of async using it in snipets.

+3
source

All Articles