Turtle, Observer, Patch

number1 >, <, =, !=, <=, >=, not= number2

Parameters:
number1 Number
number2 Number

Description:
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

Notes:
!= and not= both return true if number1 and number2 are not equal to each other