if I had ``` doThings { //val result = listOfWor...
# coroutines
g
if I had
Copy code
doThings {
  //val result = listOfWorkItems.map { await(it.workload); } -- this is actually legal code, as Mr Gorbunov mentions below.
  val result = someRelationalThing.select { await(it.workload); }
}

fun doThings(coroutine c: Block){
  c.run();
}