Reference

Operators

Equality
Input Two arguments of any type.
Output True if they are equal. False otherwise.
Inequality
Input Two arguments of any type.
Output True if they are not equal. False otherwise.
Greater than
Input Two numbers.
Output True if the first number is greater than the second number. False otherwise.
Less than
Input Two numbers.
Output True if the first number is less than the second number. False otherwise.
Greater than or equal
Input Two numbers.
Output True if the first number is greater than or equal to the second number. False otherwise.
Less than or equal
Input Two numbers.
Output True if the first number is less than or equal to the second number. False otherwise.
Addition
Input Two numbers.
Output The sum of the numbers.
Subtraction
Input Two numbers.
Output The difference of the numbers.
Negation
Input One number.
Output The number negated.
Multiplication
Input Two numbers.
Output The product of the numbers.
Division
Input Two numbers.
Output The division of the numbers.
Modulo
Input Two numbers.
Output The remainder of the division of the numbers.
And
Input Two boolean arguments.
Output True if both arguments are true. False otherwise.
Or
Input Two boolean arguments.
Output True if at least one argument is true. False otherwise.
Not
Input One boolean argument.
Output True if the argument is false. False if the argument is true.
Concatenation
Input Two elements.
Output The concatenation of the two elements.