Swift - Optionals
What will be the output of this Swift code?
var city: String? = nil
if let name = city {
print("City: \(name)")
} else {
print("No city provided")
}