Execute an command only if a specific condition becomes true.
Title | Operator | Explanation | Example |
---|---|---|---|
Less than | < | Returns True if a is less than b | a < b |
Less than or equal to | <= | Returns True if a is less than or equal to b | a <= b |
Greater than | > | Returns True if a is greater than b | a > b |
Greater than or equal to | >= | Returns True if a is greater than or equal to b | a >= b |
Equal to | == | Returns True if a is equal to b | a == b |
Not Equal to | != | Returns True if a is not equal to b | a != b |