iOS Swift - Concurrency
Given this code:
What will
func fetchValue() async -> Int {
return 5
}
func doubleValue() async -> Int {
let val = await fetchValue()
return val * 2
}What will
doubleValue() return when awaited?