mirror of
https://github.com/anoma/juvix.git
synced 2025-01-07 16:22:14 +03:00
3fbc9c7c55
Closes #1644 #1635
7 lines
108 B
Plaintext
7 lines
108 B
Plaintext
module Data.Ord;
|
|
type Ordering :=
|
|
LT : Ordering |
|
|
EQ : Ordering |
|
|
GT : Ordering;
|
|
end;
|