Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 405 Bytes

README.md

File metadata and controls

9 lines (6 loc) · 405 Bytes

async

A Go library for asynchronous programming.

It's quite an unusual implementation that coroutines do not exchange data directly. They just yield on awaiting events and resume on event notifications. Communications between coroutines are done by sending event notifications to each other.

Continue reading, or visit Go Reference if you are not there.