Home

not <> or

<>Not Equal Comparison

The <> function tests if the object in the second position is not equal to the object in the first position, as follows:

STACKBEFORE->STACKAFTER
a b->c
#a #b->c
"a" "b"->c
(a) (b)->c
[a] [b]->c
[[a]] [[b]]->c
'a' 'b'->c
a_u1 b_u2->c
obj1 obj2->1

A true result is represented by the real number one. A false result is represented by the real number zero.