Silly question :smile: I'd like to `await` a block...
# coroutines
d
Silly question 😄 I'd like to
await
a block execution to not block the current thread, but I don't care about the result value. Is there a better practice for it than calling
await()
without using the result?
t
launch {}
?
d
I can only
join()
with launch, that would block the thread
Oh noes, I was sure join() was blocking like in C++ :s