do I have to join() coroutine after it’s finished?...
# coroutines
d
do I have to join() coroutine after it’s finished? What happens if I don’t?
o
no,
join
is just if you want to wait for it to finish somewhere
otherwise, it will simply GC out of existence
d
oh I see, thanks 👍