```Another way of starting a coroutine is async {}...
# getting-started
r
Copy code
Another way of starting a coroutine is async {}. It is like launch {}, but returns an instance of Deferred<T>, which has an await() function that returns the result of the coroutine.