`launch`: fire and forget `async`: wait for someth...
# coroutines
p
`launch`: fire and forget `async`: wait for something
b
launch returns a
Job
though, which you can join 😬
p
Right, but it never returns anything, whereas
async
does.
From the man himself.
b
useful thanks!
p
👍