If you use `Thread.sleep` you needlessly block you...
# coroutines
e
If you use
Thread.sleep
you needlessly block your thread, too. You should not use
Thread.sleep
in a coroutine. There is
delay
for that.