in reply to Re: Coro: running a specific coroutine
in thread Coro: running a specific coroutine

->transfer is documented in Coro::State. And you can do what you want like this:
my $empty = new Coro::State; my $other; $other = new Coro::State sub { print "hi\n"; $other->transfer ($empty); }; $empty->transfer ($other);
see also the t/00* test script which does this.