Swift - Operators and Expressions
Given the following code:
What will be printed?
class Box {
var value: Int
init(_ value: Int) { self.value = value }
}
let box1 = Box(5)
let box2 = Box(5)
let box3 = box1
if box1 === box3 {
print("Same box")
}
if box1 === box2 {
print("Same box")
}What will be printed?
