@bthall if i'm not mistaken, this already exists. for example, if you're in a julia shell, you can type
?≥
and you get this:
```
help?> ≥
"≥" can be typed by \ge<tab>
search: ≥
>=(x, y)
≥(x,y)
Greater-than-or-equals comparison operator. Falls back to y <= x.
Examples
≡≡≡≡≡≡≡≡≡≡
julia> 'a' >= 'b'
false
julia> 7 ≥ 7 ≥ 3
true
julia> "abc" ≥ "abc"
true
julia> 5 >= 3
true
```