iOS Swift - Swift Language Essentials
What will be the output of this Swift code?
let isSunny: Bool = false let message: String = isSunny ? "Go outside" : "Stay inside" print(message)
