Hey, On Wed, 01 Dec 2004 11:33:33 +0100, Dirkjan Ochtman <[EMAIL PROTECTED]> wrote: > Also, the implementation of IronPython [1] shows that it's quite > possible to run some kind of Python on the CLR infrastructure. Python is kind of easy to port over to CLR, because it has no continuations - Closures are pretty trivial to implement via Classes, and coroutines can be implemented by using Threads, for instance. But continuations aren't that easy (albeit surely possible).
Cheers, Michael