Swift - Optionals
Examine this Swift function:
What is the issue with this code?
func welcome(_ user: String?) {
guard let name = user
print("Welcome, \(name)!")
}What is the issue with this code?
