This Swift code contains one error – can you select the line that is incorrect?
Tip: You should mentally run the code from top to bottom, meaning that if line 3 says an integer should be returned and line 10 tries to return a string, line 10 is the wrong one.
func translateError(error; Int) -> String {
var result: String = "ERROR \(error)"
result += "\nPlease try again\n"
return result
}
print(translateError(error: 43))
Link copied to your pasteboard.