<@U114Z86N6> You can start children outside of par...
# coroutines
e
@kevinherron You can start children outside of parent’s code, just do
val c = produce { ... }; launch(c) { ... }
(use parent as a Job). We might deprecate the later, though. See https://github.com/Kotlin/kotlinx.coroutines/issues/127