= < >
inequality: #
<=
>=
Equality:
A=B
Inequality:
A#B
Less than:
A<B
Greater than:
A>B
Less or equal:
A<=B
Greater or equal:
A>=B
If a comparison is true,
the term
returns 1,
otherwise it returns 0.
Eas:
a=b
a#b
a<b
a>b
a<=b
a>=b
r x>y
JS:
a==b
a!=b
a<b
a>b
a<=b
a>=b
r=x>y