mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 23:31:12 +00:00
Add comparison operators
This commit is contained in:
parent
e7f792cf1d
commit
15a87b64a3
4 changed files with 71 additions and 2 deletions
|
@ -44,5 +44,6 @@ pub enum Pattern {
|
|||
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
|
||||
pub enum Operator {
|
||||
Plus, Minus, Star, Slash, DoubleSlash, Equals,
|
||||
Plus, Minus, Star, Slash, DoubleSlash,
|
||||
Equals, LessThan, GreaterThan, LessThanOrEq, GreaterThanOrEq
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue