in reply to Coroutines in Perl 5

The Coro bundle tries to implement continuations. The function that you are looking at is for co-routines.

You can implement co-routines in terms of continuations. The reverse is not true. But co-routines are enough for a lot of what you want continuations for in practice.