working version

This commit is contained in:
Folkert 2021-04-03 20:35:00 +02:00
parent 26edc70bca
commit e78fa99030
3 changed files with 14 additions and 13 deletions

View file

@ -159,7 +159,7 @@ pub const RocResult = extern struct {
};
pub const Ordering = enum(u8) {
EQ,
GT,
LT,
EQ = 0,
GT = 1,
LT = 2,
};