Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Issue resolved.
Ok. I just updated the description. This should clarify enough the semantics of the coroutine interface:
Here, you have to implement coroutines as separate threads, using an
IORef
to hold a list of continuations "waiting to run".Interface:
yield q
: yields the processor to next thread inq
.q
.fork q p
: starts a new thread inq
runningp
.p
, and run the next thread inq
.Fixed. Solutions based on Yall module are now rejected.
No, it is not intended to use that library. I'll look at it, thanks.
The author updated the tests.