``` asyncDb { val use = await(db_handler.getUse...
# coroutines
h
Copy code
asyncDb {
   val use = await(db_handler.getUser(id))
    db_handler.do_some_stuff() // <-- this thing returns Future that is not used, and coroutine can process that future
}