Algosim documentation: ≠

≠ (not equal to)

Tests if two objects are not equal.

Syntax

Description

If x and y are any two objects, then x ≠ y is true iff x = y is false.

See = for details.

The operator is implemented by the NotEquals function.

Examples

(2 + 3)^2 ≠ 2^2 + 3^2
true

See also