iOS Swift - Concurrency
What will be printed by this Swift code?
func fetchValue() async -> Int {
return 10
}
func printValue() async {
let value = await fetchValue()
print(value)
}
Task {
await printValue()
}