<@U0AK89KT6> The coroutines are implemented in the...
# coroutines
c
@jkbbwr The coroutines are implemented in the language in a very generic way (
suspend
-able functions). You'll need a library like
kotlinx.coroutines-core
to get implementations of stuff like `async`/`Deferred`, Sequence builders using something similar to
yield
etc.