In case anyone is interested… just got this workin...
# coroutines
i
In case anyone is interested… just got this working:
Copy code
async {
                for (k in 0..30) {
                    val responseFuture = sendWithFuture("%respond%($k*$k);")
                    println("Response: ${responseFuture.await()}")
                    Thread.sleep(5000)
                }
            }
🍪 2