Swift - Optionals
How can you combine multiple optional binding with a where clause to unwrap and check values?
let x: Int? = 5
let y: Int? = 10
if let a = x, let b = y, a < b {
print("a is less than b")
} else {
print("Condition failed")
}What does this code do?
