in reply to Perl 6 coroutines (RFC 31)

I just wanted to mention Coro by Marc Lehmann, a try at implementing coroutines in perl5.

-- Hofmator

Replies are listed 'Best First'.
Coro and Perl 6 coroutines (RFC 31)
by bikeNomad (Priest) on Jul 14, 2001 at 23:14 UTC
    I looked at Coro, and what is being done with the XS code in it is that the context of the current subroutine is being saved. These contexts can then be jumped back to. I don't know how well it works, but it passes its own tests <g>