Language Reference: Equality

When are values considered equal


Operators

The equals == operator can be used to check if two values are equal.

1 + 4 == 5
true

The not-equals != operator can be used to check if two values are not equal.

1 + 4 != 14
true

Definition

Equality in Pointless obeys the following rules: