Swift - Control Flow
Identify the issue in this Swift function using
guard:func validateInput(_ input: String?) {
guard let text = input else {
print("Input is nil")
}
print("Input: \(text)")
}