Swift - Operators and Expressions
Identify the error in the following Swift code snippet:
let a = 5
let b = 10
if a = b {
print("Equal")
} else {
print("Not Equal")
}