Swift - Operators and Expressions
Find the mistake in this Swift code snippet:
class Fish {}
let f1 = Fish()
let f2 = Fish()
if f1 !=== f2 {
print("Different fish")
}