Equality operators compare values for equivalence or difference. The comparison behavior depends on the types of the operands and follows the runtime’s equality semantics.
Equality = Relational { ("==" | "!=") Relational } ;
Examples:
name == "admin" status != "pending"