I understand one of the differences between `async...
# coroutines
s
I understand one of the differences between
async
and
launch
is the return type difference, in the form of a Job and Future. Is this purely syntactic sugar, or would there be a performance gain, if I used launch, instead of awaiting
async
?