iOS Swift - Concurrency
Consider this Swift code:
What will be printed?
func fetchData() async -> String {
return "Hello"
}
Task {
let greeting = await fetchData()
print(greeting + " World")
}What will be printed?
