http://www.perlmonks.org?node_id=1029986


in reply to Re: RFC: Simulating Ruby's "yield" and "blocks" in Perl
in thread RFC: Simulating Ruby's "yield" and "blocks" in Perl

> Have you read Elian's take on coroutines?

Thanks a lot, not yet.

But is this Ruby feature really demonstrating coroutines?

We don't have multiple entry points and there's no reentering at the last suspended exit point.

Are you maybe confusing Python's yield with Ruby's yield?

> I was trying to find the excerpt from Knuth

I really should start reading Knuth ...

FWIW I demonstrated at YAPC:EU 2011 how to emulate Perl6's gather/take in Perl5.

> the idea of having two cooperating processes seems like a useful feature but emulating it doesn't.

Well, I think a convincing prototype which fits well into the language is the first step for implementation.

And backwards compability is always an issue, most module authors wouldn't chose a feature which is only available in the very newest release.

One of our perlmongers just told us at the last meeting that at work he's stuck with 5.8.6 on AIX!

Cheers Rolf

( addicted to the Perl Programming Language)