I have this atm, ```suspend fun foo() = binding {...
# arrow
s
I have this atm,
Copy code
suspend fun foo()  = binding { 
        val a = start().bind()
        val b = bar(a).bind()
        val c = update(b) // suspendable
        result(c)
   }