Reputation: 734
I found this article: http://www.mono-project.com/Continuations So I have a few questions about it. Are there any implementations of erlang-style or (at least) scala-style actors for Nemerle based on this framework ? If no, can anyone give an example of usage of this API, please.
Also is this continuation framework compatable with native Microsoft .NET CLR ?
Thank you for your help.
Upvotes: 4
Views: 466
Reputation: 14041
I have not seen a Nemerle actors library. However, the ComputationExpressions library is more powerful than continuations. It adds monad support to Nemerle, making it possible to implement continuations, coroutines, and many other features. You can find examples of implementing async using it in the snipets.
Upvotes: 3