Symbols
number1 =, !=, <, >, <=, >= number2
Equivalency operators. A space is needed between the numbers
and the symbol.
Examples:
5 = 5 returns true
5 != 3 returns true
number1 <= number2 returns true if the number stored in number1 was less than or equal to the number stored in number2, otherwise it would return false
Related commands:
|