<@U0BFDUP0E> A difference between `promise { ... }...
# coroutines
e
@jw A difference between
promise { ... }
builder and your
Promise { ... }
code is that the former is not executing the body immediately, but uses an additional
setTimeout(f, 0)
to schedule execution of initial continuation.