Skip to content

Equals

eq

The eq command will test if two numbers are equal. Returns 1 if true, 0 if false.


Function Arguments

eq(left_operand, right_operand)

This is equivalent to left_operand == right_operand


Algebraic Example

eq(3, 4)

RPN Example

3
4
eq