``` fun example() = async<HashMap<String...
# coroutines
k
Copy code
fun example() = async<HashMap<String, Int>> {
        val map = HashMap<String, Int>()
        
        val k1 = await(...)
        map.put(k1, 1)
        
        val k2 = await(...)
        map.put(k2, 2)
        
        val k3 = await(...)
        map.put(k3, 3)
        
        map
    }