Conlang: Add range operators

TODO: Limit range operators to at most 2 operands
This commit is contained in:
2023-10-22 18:30:00 -05:00
parent b5abd2bff1
commit ccfddcc09a
4 changed files with 16 additions and 2 deletions

View File

@@ -603,6 +603,12 @@ pub mod expression {
/// `^^`: **Non-short-circuiting** logical XOR
LogXor,
// Range operators
/// `..`: Exclusive range
RangeExc,
/// `..=`: Inclusive range
RangeInc,
// Comparison operators
/// `<`: Less-than Comparison
Less,