Comparison Operators
Scrybe supports comparing two numbers with the following operators:
| Operation | Symbol |
|---|---|
Less than |
< |
Greater than |
> |
| Less than or equal to | <= |
| Greater than or equal to | >= |
Equal to |
== |
For equality and inequality only, two strings can be compared like string_1 == string_2. String comparisons are case-insensitive due to Scratch limitations.
Less than
Greater than
Equal to