Algosim documentation: =

= (equals sign)

Tests if two objects are equal.

Syntax

Description

If x and y are any two objects, then x = y returns true iff x and y are exactly equal. The subtleties are as follows:

The = operator is implemented by the equals function.

Examples

1 + 1 = 2
true

See also