1 // =================================
 2 // Copyright (c) 2024 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 using System;
 7 using System.Collections;
 8 
 9 namespace System.Parsing
10 {
11     public class Range
12     {
13         public constexpr Range(int first_int last_) : first(first_)last(last_)
14         {
15         }
16         public int first;
17         public int last;
18     }
19