$eq

Usage: $eq(x,y)
Category: conditional
Implemented: Picard

Description:

Returns true if x equals y. Note that comparisons are case-sensitive.

Warning

Formatting the code using characters such as spaces, tabs or newlines can affect the result of the function.

Example:

The following statements will return the values indicated:

$eq(,a)   ==>  ""   (False)
$eq(a,)   ==>  ""   (False)
$eq(a,A)  ==>  ""   (False)
$eq(a,a)  ==>  "1"  (True)