<@U1BMD3T29> `runBlocking { delay(xxx) }` has the ...
# coroutines
e
@arocnies
runBlocking { delay(xxx) }
has the same effect as
Thread.sleep(xxx)
. If you really needed it inside
buildSequence
, then just use the later.