Swift - Operators and Expressions
Consider the code:
What is the output?
class Cat {}
let c1 = Cat()
let c2 = c1
let c3 = Cat()
print(c1 !== c2)
print(c1 !== c3)What is the output?
