i mean something like this: ``` while(true) { ...
# coroutines
b
i mean something like this:
Copy code
while(true) {
    if( currentJob == null )
        break
    currentJob.join()
}
currentJob = launch { ... }