So something like this, in pseudoisch code: ```roo...
# kovenant
m
So something like this, in pseudoisch code:
Copy code
root(maxConcurrent = 3).async {
    
    // child of root
    async {...} 
    
    //should also work for 
    //nested functions
    foo()
    
} success {
    //should be called when all children have finished
}

fun foo() = async {…}