iOS Swift - Swift Language Essentials
Given this Swift code:
What will be printed?
let temperature: Double = 21.5 let isWarm: Bool = temperature > 20 print(isWarm)
What will be printed?
