Element - >
- Greater Than
Characters:
>
Description
Basic comparison - greater than
Overloads
num-num
-a > b
num-str
-str(a) > b
str-num
-a > str(b)
str-str
-a > b
any-fun
-increment a until b returns false
fun-any
-increment b until a returns false
Examples
2 1 >
=1
2 `1` >
=1
`2` 1 >
=1
2 -5 >
=1
⟨1|2|3⟩ 2 >
=⟨0|0|1⟩
`5` 10 >
=1