The equals block returns true if both inputs are equal.
To specify the blocks comparison type, use the dropdown in the center of the block.
=
input1 == input2;
The not equals block returns true if both inputs aren't equal.
≠
input1 != input2;
The less than block returns true if the first input is less than the second input.
<
input1 < input2;
The more than block returns true if the first input is more than the second input.
>
input1 > input2;
The less than or equal block returns true if the first input is less than or equal to the second input.
≤
input1 <= input2;
The less than or equal block returns true if the first input is more than or equal to the second input.
≥
input1 >= input2;