iOS Swift - Swift Language Essentials
What will be the output of this Swift code?
var temperature: Int? = nil
if let temp = temperature {
print("Temp is \(temp)")
} else {
print("Temperature unknown")
}