…expr… = …expr…
…expr… != …expr…
…expr… <> …expr…
t, t -> BOOL
Test for equality.
Values of any type can be tested for equality, but both values must have the same type.
expression | evaluates to |
---|---|
"foo" = "FOO" | FALSE |
[1; 2] <> [2; 1] | TRUE |
PI != 3.14 | TRUE |