iOS Swift - Swift Language Essentials
Consider this Swift code:
What happens if
func fetchData() throws -> String {
throw NSError(domain: "Error", code: 1)
}
func process() throws {
try fetchData()
}
try? process()What happens if
process() is called with try??