Concurrency
await vs async let
In Swift Concurrency, if fetchProfile() and fetchFeed() each take 1 second, which statement about the total time of these two snippets is correct?
// A
let p = await fetchProfile()
let f = await fetchFeed()
// B
async let p = fetchProfile()
async let f = fetchFeed()
let (profile, feed) = await (p, f)Pick one