// module ordering_match

/// Iter 23.1 fixture: pattern-match on prelude Ordering ctor without explicit
/// prelude import.
fn main() -> own Unit with IO {
  print(match LT {
    LT => 1,
    EQ => 2,
    GT => 3
  });
  do io/print_str("\n")
}
